From cc7b526dd84b780f41c9d8fe5b2dfcc3ed41e550 Mon Sep 17 00:00:00 2001 From: Daniel Searle <84069850+Daniel-Searle@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:12:14 +0100 Subject: [PATCH 1/5] feat(cb2-13694): Load batch plates handler (#154) --- src/handler/loadBatchPlate.ts | 8 ++++++++ template.yml | 17 +++++++++++++++++ webpack/webpack.production.js | 2 +- 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 src/handler/loadBatchPlate.ts diff --git a/src/handler/loadBatchPlate.ts b/src/handler/loadBatchPlate.ts new file mode 100644 index 00000000..1fba9ad1 --- /dev/null +++ b/src/handler/loadBatchPlate.ts @@ -0,0 +1,8 @@ +import { S3CreateEvent } from 'aws-lambda'; +import 'dotenv/config'; +import logger from '../util/logger'; + +export const handler = async (event: S3CreateEvent): Promise => { + logger.info('Load batch plate lambda has been invoked.'); + event.Records.map((record) => logger.info(record.s3)); +}; diff --git a/template.yml b/template.yml index ef5d5d12..e113109e 100644 --- a/template.yml +++ b/template.yml @@ -192,6 +192,23 @@ Resources: Runtime: nodejs18.x Timeout: 20 + LoadBatchPlate: + Type: 'AWS::Serverless::Function' + Properties: + CodeUri: src/handler/ + Handler: loadBatchPlate.handler + Runtime: nodejs18.x + Timeout: 20 + Events: + S3Event: + Type: S3 + Events: s3:ObjectCreated:* + Filter: + S3Key: + Rules: + - Name: prefix + Value: value + LocalQueue: Type: AWS::SQS::Queue diff --git a/webpack/webpack.production.js b/webpack/webpack.production.js index a69c5cc6..ec3c811b 100644 --- a/webpack/webpack.production.js +++ b/webpack/webpack.production.js @@ -10,7 +10,7 @@ const AwsSamPlugin = require("aws-sam-webpack-plugin"); const LAMBDA_NAMES = ['SearchLambdaFunction', 'GetLambdaFunction', 'PostLambdaFunction', 'PatchLambdaFunction', 'ArchiveLambdaFunction', 'UnarchiveLambdaFunction', 'PromoteLambdaFunction', 'UpdateVrmFunction', 'UpdateVinFunction', 'GeneratePlateFunction', 'GenerateLetterFunction', 'SyncTestResultInfoFunction', - 'GenerateAdrCertificateFunction', 'RemoveInvalidPrimaryVrms', 'BatchPlateCreation', 'MotUpdateVrm']; + 'GenerateAdrCertificateFunction', 'RemoveInvalidPrimaryVrms', 'BatchPlateCreation', 'MotUpdateVrm', 'LoadBatchPlate']; const OUTPUT_FOLDER = './' const REPO_NAME = 'cvs-svc-technical-records-v3'; const BRANCH_NAME = branchName().replace(/\//g, "-"); From 5e456e5cf97b4df07cba68f9dd7ec6c91fb5385f Mon Sep 17 00:00:00 2001 From: Daniel Searle <84069850+Daniel-Searle@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:23:25 +0100 Subject: [PATCH 2/5] feat/CB2-13695: New Lambda for loading batch plate generation (#157) --- src/handler/loadBatchPlate.ts | 100 +++++++++++- src/models/batchPlate.ts | 4 + src/util/logger.ts | 8 + .../unit/handler/loadBatchPlate.unit.test.ts | 144 ++++++++++++++++++ 4 files changed, 250 insertions(+), 6 deletions(-) create mode 100644 src/models/batchPlate.ts create mode 100644 tests/unit/handler/loadBatchPlate.unit.test.ts diff --git a/src/handler/loadBatchPlate.ts b/src/handler/loadBatchPlate.ts index 1fba9ad1..ae030032 100644 --- a/src/handler/loadBatchPlate.ts +++ b/src/handler/loadBatchPlate.ts @@ -1,8 +1,96 @@ -import { S3CreateEvent } from 'aws-lambda'; -import 'dotenv/config'; -import logger from '../util/logger'; +import { + S3Client, GetObjectCommand, CopyObjectCommand, DeleteObjectCommand, +} from '@aws-sdk/client-s3'; +import { SQSClient, SendMessageCommand } from '@aws-sdk/client-sqs'; +import { S3Event } from 'aws-lambda'; +import { BatchPlateData } from '../models/batchPlate'; +import logger, { logError } from '../util/logger'; -export const handler = async (event: S3CreateEvent): Promise => { - logger.info('Load batch plate lambda has been invoked.'); - event.Records.map((record) => logger.info(record.s3)); +const s3Client = new S3Client({ region: process.env.DYNAMO_AWS_REGION }); +const sqsClient = new SQSClient({ region: process.env.DYNAMO_AWS_REGION }); + +export const handler = async (event: S3Event): Promise => { + logger.info('Update end point called'); + + try { + await Promise.all(event.Records.map(processRecord)); + logger.info(`Successfully processed ${event.Records.length} files.`); + } catch (error) { + logError('Failed to process one or more files', error); + throw error; + } }; +async function processRecord(record: S3Event['Records'][0]): Promise { + const bucket = record.s3.bucket.name; + const key = decodeURIComponent(record.s3.object.key.replace(/\+/g, ' ')); + + logger.info(`Processing file: ${key} from ${bucket}`); + + try { + const data = await retrieveJSON(bucket, key); + await Promise.all(data.map((item) => sendToQueue(item))); + await moveProcessedFile(bucket, key); + logger.info(`Successfully processed and moved file: ${key}}`); + } catch (error) { + logError(`Error processing file ${key}`, error); + throw error; + } +} + +/** + * This function will retrieve the json file from the provided s3 bucket + * Then, extract and validate the json file content + * @param bucket + * @param key + */ +async function retrieveJSON(bucket: string, key: string): Promise { + const command = new GetObjectCommand({ Bucket: bucket, Key: key }); + const response = await s3Client.send(command); + const bodyContents = await response.Body?.transformToString(); + + if (!bodyContents) { + throw new Error('Empty JSON file'); + } + + try { + return JSON.parse(bodyContents) as BatchPlateData[]; + } catch (error) { + throw new Error(`Invalid JSON in file: ${error instanceof Error ? error.message : (error as string)}`); + } +} + +/** + * This function will send the systemNumber and createdTimestamp to the doc-gen service. + * @param item + */ +async function sendToQueue(item: BatchPlateData): Promise { + const command = new SendMessageCommand({ + QueueUrl: process.env.SQS_QUEUE_URL, + MessageBody: JSON.stringify(item), + }); + + await sqsClient.send(command); +} + +/** + * This function will copy the file that has been processed and move it to the processed folder + * Then, it will delete the original. + * @param bucket + * @param key + */ +async function moveProcessedFile(bucket: string, key: string): Promise { + const newKey = `processed/${key}`; + + const copyCommand = new CopyObjectCommand({ + Bucket: bucket, + CopySource: `${bucket}/${key}`, + Key: newKey, + }); + await s3Client.send(copyCommand); + + const deleteCommand = new DeleteObjectCommand({ + Bucket: bucket, + Key: key, + }); + await s3Client.send(deleteCommand); +} \ No newline at end of file diff --git a/src/models/batchPlate.ts b/src/models/batchPlate.ts new file mode 100644 index 00000000..d357ac64 --- /dev/null +++ b/src/models/batchPlate.ts @@ -0,0 +1,4 @@ +export type BatchPlateData = { + systemNumber: string, + createdTimestamp: string +}; diff --git a/src/util/logger.ts b/src/util/logger.ts index 5876c674..29fa1586 100644 --- a/src/util/logger.ts +++ b/src/util/logger.ts @@ -15,4 +15,12 @@ if (process.env.NODE_ENV !== 'production') { })); } +export const logError = (message: string, error: unknown): void => { + const errorInfo = error instanceof Error + ? { errorMessage: error.message } + : { error: String(error) }; + + logger.error(message, { ...errorInfo }); +}; + export default logger; diff --git a/tests/unit/handler/loadBatchPlate.unit.test.ts b/tests/unit/handler/loadBatchPlate.unit.test.ts new file mode 100644 index 00000000..ac2e983d --- /dev/null +++ b/tests/unit/handler/loadBatchPlate.unit.test.ts @@ -0,0 +1,144 @@ +import { S3Event } from 'aws-lambda'; +import { + S3Client, CopyObjectCommand, +} from '@aws-sdk/client-s3'; +import { SQSClient } from '@aws-sdk/client-sqs'; +import { handler } from '../../../src/handler/loadBatchPlate'; +import logger from '../../../src/util/logger'; + +jest.mock('@aws-sdk/client-s3'); +jest.mock('@aws-sdk/client-sqs'); +jest.mock('../../../src/util/logger'); + +const mockS3Send = jest.fn(); +const mockSQSSend = jest.fn(); + +(S3Client.prototype.send as jest.Mock) = mockS3Send; +(SQSClient.prototype.send as jest.Mock) = mockSQSSend; + +describe('S3 Event Handler', () => { + beforeEach(() => { + jest.clearAllMocks(); + process.env.DYNAMO_AWS_REGION = 'eu-west-1'; + process.env.SQS_QUEUE_URL = 'https://sqs.eu-west-1.amazonaws.com/123456789012/test-queue'; + }); + + it('should process valid records successfully', async () => { + const mockEvent = createMockS3Event(['test-file1.json', 'test-file2.json']); + const mockData = [{ systemNumber: '12345', createdTimestamp: '2023-01-01T00:00:00.000Z' }]; + + mockS3Send.mockImplementation(() => ({ + Body: { transformToString: () => Promise.resolve(JSON.stringify(mockData)) }, + })); + + mockSQSSend.mockResolvedValue({}); + + await handler(mockEvent); + + expect(mockS3Send).toHaveBeenCalledTimes(6); + expect(mockSQSSend).toHaveBeenCalledTimes(2); + expect(logger.info).toHaveBeenCalledWith('Successfully processed 2 files.'); + }); + + it('should handle empty JSON files', async () => { + const mockEvent = createMockS3Event(['emptyFile.json']); + + mockS3Send.mockResolvedValue({ + Body: { transformToString: () => Promise.resolve('') }, + }); + + await expect(handler(mockEvent)).rejects.toThrow('Empty JSON file'); + expect(mockS3Send).toHaveBeenCalledTimes(1); + expect(mockSQSSend).not.toHaveBeenCalled(); + }); + + it('should handle invalid JSON files', async () => { + const mockEvent = createMockS3Event(['invalidFile.json']); + + mockS3Send.mockResolvedValue({ + Body: { transformToString: () => Promise.resolve('{ invalid json }') }, + }); + + await expect(handler(mockEvent)).rejects.toThrow('Invalid JSON in file'); + expect(mockS3Send).toHaveBeenCalledTimes(1); + expect(mockSQSSend).not.toHaveBeenCalled(); + }); + + it('should handle S3 errors', async () => { + const mockEvent = createMockS3Event(['errorFile.json']); + + mockS3Send.mockRejectedValue(new Error('S3 Error')); + + await expect(handler(mockEvent)).rejects.toThrow('S3 Error'); + expect(mockS3Send).toHaveBeenCalledTimes(1); + expect(mockSQSSend).not.toHaveBeenCalled(); + }); + + it('should handle SQS errors', async () => { + const mockEvent = createMockS3Event(['testFile.json']); + const mockData = [{ systemNumber: '12345', createdTimestamp: '2023-01-01T00:00:00.000Z' }]; + + mockS3Send.mockResolvedValue({ + Body: { transformToString: () => Promise.resolve(JSON.stringify(mockData)) }, + }); + + mockSQSSend.mockRejectedValue(new Error('SQS Error')); + + await expect(handler(mockEvent)).rejects.toThrow('SQS Error'); + expect(mockS3Send).toHaveBeenCalledTimes(1); + expect(mockSQSSend).toHaveBeenCalledTimes(1); + }); + + it('should handle errors when moving processed files', async () => { + const mockEvent = createMockS3Event(['testFile.json']); + const mockData = [{ systemNumber: '12345', createdTimestamp: '2023-01-01T00:00:00.000Z' }]; + + mockS3Send.mockImplementation((command) => { + if (command instanceof CopyObjectCommand) { + return Promise.reject(new Error('Copy Error')); + } + return Promise.resolve({ + Body: { transformToString: () => Promise.resolve(JSON.stringify(mockData)) }, + }); + }); + + mockSQSSend.mockResolvedValue({}); + + await expect(handler(mockEvent)).rejects.toThrow('Copy Error'); + expect(mockS3Send).toHaveBeenCalledTimes(2); + expect(mockSQSSend).toHaveBeenCalledTimes(1); + }); +}); + +function createMockS3Event(keys: string[]): S3Event { + return { + Records: keys.map((key) => ({ + eventVersion: '2.0', + eventSource: 'aws:s3', + awsRegion: 'eu-west-1', + eventTime: '2024-01-01T02:00:00.000Z', + eventName: 'ObjectCreated:Put', + userIdentity: { principalId: 'EXAMPLE' }, + requestParameters: { sourceIPAddress: '0.0.0.0' }, + responseElements: { + 'x-amz-request-id': '123-123123123-123123', + 'x-amz-id-2': '12344-1231243123-123123', + }, + s3: { + s3SchemaVersion: '1.0', + configurationId: 'testConfiguration', + bucket: { + name: 'example-bucket', + ownerIdentity: { principalId: 'EXAMPLE' }, + arn: 'arn:aws:s3:::example-bucket', + }, + object: { + key, + size: 1024, + eTag: '435235435gsdfgdfsbsfdbsfgdbs', + sequencer: '65363456gbdfbgfbdfbf', + }, + }, + })), + }; +} From 7599655ce7e34d5e28677938b4991cf508e5c325 Mon Sep 17 00:00:00 2001 From: Daniel Searle <84069850+Daniel-Searle@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:23:37 +0100 Subject: [PATCH 3/5] feat(CB2-13696): Modify existing batch plate Lambda (#155) --- package.json | 1 - src/handler/batchPlateCreation.ts | 86 ++++++ src/hotfix/cb2-11175/README.md | 10 - src/hotfix/cb2-11175/batchPlateCreation.ts | 103 ------- .../batchPlateCreation.int.test.ts | 150 ----------- .../cb2-11175/tests/resources/event.json | 7 - template.yml | 2 +- .../resources/batchPlatesData.json | 2 +- .../technical-records-v3-no-plates.json | 0 .../handler/batchPlateCreation.unit.test.ts | 254 ++++++++++++++++++ 10 files changed, 342 insertions(+), 273 deletions(-) create mode 100644 src/handler/batchPlateCreation.ts delete mode 100644 src/hotfix/cb2-11175/README.md delete mode 100644 src/hotfix/cb2-11175/batchPlateCreation.ts delete mode 100644 src/hotfix/cb2-11175/tests/integration/batchPlateCreation.int.test.ts delete mode 100644 src/hotfix/cb2-11175/tests/resources/event.json rename {src/hotfix/cb2-11175 => tests}/resources/batchPlatesData.json (99%) rename {src/hotfix/cb2-11175/tests => tests}/resources/technical-records-v3-no-plates.json (100%) create mode 100644 tests/unit/handler/batchPlateCreation.unit.test.ts diff --git a/package.json b/package.json index 15dbec93..819986e9 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,6 @@ "test:integration:github": "jest int --runInBand --globalSetup='./scripts/spin-up-lambdas.ts' --globalTeardown='./scripts/destroy-lambdas.ts' --testTimeout=20000", "test:integration": "jest int --testTimeout=20000 --runInBand", "test:hotfix:vrm": "jest --testTimeout 20000 hotfix/cb2-10791", - "test:hotfix:plates": "jest --testTimeout 20000 hotfix/cb2-11175", "package": "npm run build:prod", "start:ci": "npm run dynamo:seed && sam local start-api --docker-network $(docker network ls | grep github_network | awk '{print $2}') --warm-containers EAGER", "swagger:open": "docker run --name swagger -d -p 80:8080 -v $(pwd)/docs:/tmp -e SWAGGER_FILE=/tmp/spec.yml swaggerapi/swagger-editor", diff --git a/src/handler/batchPlateCreation.ts b/src/handler/batchPlateCreation.ts new file mode 100644 index 00000000..932e8e67 --- /dev/null +++ b/src/handler/batchPlateCreation.ts @@ -0,0 +1,86 @@ +import { + TechRecordType as TechRecordTypeByVehicle, +} from '@dvsa/cvs-type-definitions/types/v3/tech-record/tech-record-vehicle-type'; +import { TechRecordType } from '@dvsa/cvs-type-definitions/types/v3/tech-record/tech-record-verb'; +import 'dotenv/config'; +import { v4 as uuidv4 } from 'uuid'; +import { SQSEvent } from 'aws-lambda'; +import { PlateReasonForIssue, Plates } from '../models/plate'; +import { DocumentName, SQSRequestBody } from '../models/sqsPayload'; +import { getBySystemNumberAndCreatedTimestamp, inPlaceRecordUpdate } from '../services/database'; +import { addToSqs } from '../services/sqs'; +import { StatusCode } from '../util/enum'; +import { flattenArrays, formatTechRecord } from '../util/formatTechRecord'; +import logger, { logError } from '../util/logger'; +import { BatchPlateData } from '../models/batchPlate'; + +export const handler = async (event: SQSEvent): Promise => { + const batchIssuerName = 'CVS Batch Plate Generation'; + let numberOfRecordsUpdated = 0; + let numberOfSqsAdded = 0; + + try { + const processPromises = event.Records.map(async ({ body }) => { + const data: BatchPlateData = JSON.parse(body) as BatchPlateData; + const { systemNumber, createdTimestamp } = data; + + logger.info(`Processing record: sysNum ${systemNumber}, timestamp ${createdTimestamp}`); + + const dbRecord = await getBySystemNumberAndCreatedTimestamp(systemNumber, createdTimestamp); + + if (!dbRecord || !Object.keys(dbRecord).length) { + throw new Error(`Missing record: sysNum ${systemNumber}, timestamp ${createdTimestamp}`); + } + + if (dbRecord.techRecord_statusCode !== StatusCode.CURRENT) { + throw new Error(`Non current record: statusCode ${dbRecord.techRecord_statusCode}`); + } + if (dbRecord.techRecord_vehicleType !== 'trl' && dbRecord.techRecord_vehicleType !== 'hgv') { + throw new Error(`Invalid vehicle type: ${dbRecord.techRecord_vehicleType}`); + } + + const newPlate: Plates = { + plateSerialNumber: uuidv4(), + plateIssueDate: new Date().toISOString(), + plateReasonForIssue: PlateReasonForIssue.REPLACEMENT, + plateIssuer: batchIssuerName, + }; + + const formattedTechRecord = formatTechRecord>(dbRecord); + + if (formattedTechRecord.techRecord_plates?.some((plate) => plate.plateIssuer === batchIssuerName) ?? false) { + logger.info(`Plate already issued for: sysNum ${systemNumber}, timestamp ${createdTimestamp}`); + return; + } + + if (formattedTechRecord.techRecord_plates) { + formattedTechRecord.techRecord_plates.push(newPlate); + } else { + formattedTechRecord.techRecord_plates = [newPlate]; + } + const flattenedTechRecord = flattenArrays(formattedTechRecord) as TechRecordType<'get'>; + await inPlaceRecordUpdate(flattenedTechRecord); + numberOfRecordsUpdated++; + + const plateSqsPayload: SQSRequestBody = { + techRecord: formattedTechRecord, + plate: newPlate, + documentName: DocumentName.MINISTRY, + recipientEmailAddress: '', + }; + logger.debug('Sending to Doc Gen Queue', JSON.stringify(plateSqsPayload)); + await addToSqs(plateSqsPayload, process.env.DOC_GEN_SQS_QUEUE ?? ''); + + numberOfSqsAdded++; + + logger.info(`Successfully processed: sysNum ${systemNumber}, timestamp ${createdTimestamp}`); + }); + + await Promise.all(processPromises); + + logger.info(`Batch Plate: Updated ${numberOfRecordsUpdated} tech records and added ${numberOfSqsAdded} to SQS`); + } catch (err: unknown) { + logError('Error in batch processing', err); + throw (err); + } +}; diff --git a/src/hotfix/cb2-11175/README.md b/src/hotfix/cb2-11175/README.md deleted file mode 100644 index 2e77d633..00000000 --- a/src/hotfix/cb2-11175/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Hotfix for CB2-11175: Add a plate to around 8000 current HGV and TRL records. - -We need to make plates avaliable for historical purposes. This requires adding a new plate to a lot of vehicles. -A new lambda makes the most sense as we need to remove the validation and also throttle the number of requests. - -## Considerations - -Data remediation app was not setup to update tech records. - -The side effect of the plate being generated will work with no modifications. \ No newline at end of file diff --git a/src/hotfix/cb2-11175/batchPlateCreation.ts b/src/hotfix/cb2-11175/batchPlateCreation.ts deleted file mode 100644 index 63e285b6..00000000 --- a/src/hotfix/cb2-11175/batchPlateCreation.ts +++ /dev/null @@ -1,103 +0,0 @@ -/* eslint-disable no-continue */ -import { TechRecordType as TechRecordTypeByVehicle } from '@dvsa/cvs-type-definitions/types/v3/tech-record/tech-record-vehicle-type'; -import { TechRecordType } from '@dvsa/cvs-type-definitions/types/v3/tech-record/tech-record-verb'; -import 'dotenv/config'; -import { v4 as uuidv4 } from 'uuid'; -import { PlateReasonForIssue, Plates } from '../../models/plate'; -import { DocumentName, SQSRequestBody } from '../../models/sqsPayload'; -import { getBySystemNumberAndCreatedTimestamp, inPlaceRecordUpdate } from '../../services/database'; -import { addToSqs } from '../../services/sqs'; -import { ERRORS, StatusCode } from '../../util/enum'; -import { formatErrorMessage } from '../../util/errorMessage'; -import { flattenArrays, formatTechRecord } from '../../util/formatTechRecord'; -import { addHttpHeaders } from '../../util/httpHeaders'; -import logger from '../../util/logger'; -import batchPlatesData from './resources/batchPlatesData.json'; - -export type BatchPlateData = { - systemNumber: string, - createdTimestamp: string -}; - -export const handler = async (batchPlateRecords: BatchPlateData[]) => { - try { - logger.info('Batch plate generation called'); - - const batchData = batchPlateRecords ?? batchPlatesData; - - const batchIssuerName = 'CVS Batch Plate Generation'; - let numberOfRecordsUpdated = 0; - let numberOfSqsAdded = 0; - - // eslint-disable-next-line no-restricted-syntax - for await (const data of batchData) { - const { systemNumber, createdTimestamp } = data; - logger.info(`Get from database with sysNum ${systemNumber} and timestamp ${createdTimestamp}`); - - try { - const record = await getBySystemNumberAndCreatedTimestamp(systemNumber, createdTimestamp); - logger.debug(`result is: ${JSON.stringify(record)}`); - - if (!record || !Object.keys(record).length) { - logger.error(`Missing record with sysNum ${systemNumber} and timestamp ${createdTimestamp}`); - continue; - } - if (record.techRecord_statusCode !== StatusCode.CURRENT) { - logger.error(`Non current record with sysNum ${systemNumber} and timestamp ${createdTimestamp}`); - continue; - } - if (record.techRecord_vehicleType !== 'trl' && record.techRecord_vehicleType !== 'hgv') { - logger.error(`Non trl or hgv record with sysNum ${systemNumber} and timestamp ${createdTimestamp}`); - continue; - } - - const newPlate: Plates = { - plateSerialNumber: uuidv4(), - plateIssueDate: new Date().toISOString(), - plateReasonForIssue: PlateReasonForIssue.REPLACEMENT, - plateIssuer: batchIssuerName, - }; - - const arrayifiedRecord = formatTechRecord | TechRecordTypeByVehicle<'trl'>>(record); - - if (arrayifiedRecord.techRecord_plates) { - if (arrayifiedRecord.techRecord_plates.some((plate) => plate.plateIssuer === batchIssuerName)) continue; - arrayifiedRecord.techRecord_plates.push(newPlate); - } else { - arrayifiedRecord.techRecord_plates = [newPlate]; - } - - const normalisedRecord = flattenArrays(arrayifiedRecord) as TechRecordType<'get'>; - await inPlaceRecordUpdate(normalisedRecord); - - numberOfRecordsUpdated += 1; - - const plateSqsPayload: SQSRequestBody = { - techRecord: arrayifiedRecord, - plate: newPlate, - documentName: DocumentName.MINISTRY, - recipientEmailAddress: '', - }; - - logger.debug(JSON.stringify(plateSqsPayload)); - - await addToSqs(plateSqsPayload, process.env.DOC_GEN_SQS_QUEUE ?? ''); - - numberOfSqsAdded += 1; - } catch (err) { - logger.error(`${systemNumber}, ${createdTimestamp}, ${JSON.stringify(err)}`); - } - } - - return addHttpHeaders({ - statusCode: 200, - body: `Batch Plate: Updated ${numberOfRecordsUpdated} tech records and added ${numberOfSqsAdded} to sqs`, - }); - } catch (e) { - logger.error(e); - return addHttpHeaders({ - statusCode: 500, - body: formatErrorMessage(ERRORS.FAILED_UPDATE_MESSAGE), - }); - } -}; diff --git a/src/hotfix/cb2-11175/tests/integration/batchPlateCreation.int.test.ts b/src/hotfix/cb2-11175/tests/integration/batchPlateCreation.int.test.ts deleted file mode 100644 index 968cfe65..00000000 --- a/src/hotfix/cb2-11175/tests/integration/batchPlateCreation.int.test.ts +++ /dev/null @@ -1,150 +0,0 @@ -import { chunk } from 'lodash'; -import { seedTables } from '../../../../../scripts/setup-local-tables'; -import { tableName } from '../../../../config'; -import { getBySystemNumberAndCreatedTimestamp } from '../../../../services/database'; -import logger from '../../../../util/logger'; -import { handler } from '../../batchPlateCreation'; -import event from '../resources/event.json'; -import techRecordData from '../resources/technical-records-v3-no-plates.json'; - -const batchIssuerName = 'CVS Batch Plate Generation'; - -describe('batch plate creation', () => { - beforeAll(async () => { - jest.useFakeTimers(); - jest.setSystemTime(new Date()); - - const techRecordChunks = chunk(techRecordData, 25); - /* eslint-disable-next-line no-restricted-syntax */ - for (const techRecordChunk of techRecordChunks) { - /* eslint-disable-next-line no-await-in-loop */ - await seedTables([{ - table: tableName, - data: techRecordChunk, - }]); - } - }); - - describe('happy path', () => { - it('should work when I give it a payload of plates to fix', async () => { - process.env.AWS_SAM_LOCAL = 'true'; - const res = await handler(event); - - expect(res.statusCode).toBe(200); - expect(res.body).toBe(`Batch Plate: Updated ${event.length} tech records and added ${event.length} to sqs`); - - const inspectPlateOne = await getBySystemNumberAndCreatedTimestamp( - event[0].systemNumber, - event[0].createdTimestamp, - ); - const inspectPlateThree = await getBySystemNumberAndCreatedTimestamp( - event[2].systemNumber, - event[2].createdTimestamp, - ); - - expect(inspectPlateOne).toEqual(expect.objectContaining({ techRecord_plates_0_plateIssuer: batchIssuerName })); - expect(inspectPlateThree).toEqual(expect.objectContaining({ techRecord_plates_0_plateIssuer: batchIssuerName })); - }); - }); - - describe('sad path', () => { - beforeEach(() => { - jest.resetAllMocks(); - }); - - it('should only complete 1 of two updates if it cant find a vehicle', async () => { - process.env.AWS_SAM_LOCAL = 'true'; - - const inputEvent = [ - { systemNumber: 'bad', createdTimestamp: 'data' }, - { systemNumber: '12345690', createdTimestamp: '2024-01-30T09:10:32.594Z' }, - ]; - - const spy = jest.spyOn(logger, 'error'); - - const res = await handler(inputEvent); - - expect(spy).toHaveBeenCalledWith( - `Missing record with sysNum ${inputEvent[0].systemNumber} and timestamp ${inputEvent[0].createdTimestamp}`, - ); - - expect(res.statusCode).toBe(200); - expect(res.body).toBe(`Batch Plate: Updated ${inputEvent.length - 1} tech records and added ${inputEvent.length - 1} to sqs`); - - const inspectPlateOne = await getBySystemNumberAndCreatedTimestamp( - inputEvent[0].systemNumber, - inputEvent[0].createdTimestamp, - ); - const inspectPlateTwo = await getBySystemNumberAndCreatedTimestamp( - inputEvent[1].systemNumber, - inputEvent[1].createdTimestamp, - ); - - expect(inspectPlateOne).not.toHaveProperty('techRecord_plates_0_plateIssuer'); - expect(inspectPlateTwo).toEqual(expect.objectContaining({ techRecord_plates_0_plateIssuer: batchIssuerName })); - }); - - it('should only complete 1 of two updates if the record isnt current', async () => { - process.env.AWS_SAM_LOCAL = 'true'; - - const inputEvent = [ - { systemNumber: '12345688', createdTimestamp: '2024-01-31T15:18:53.501Z' }, - { systemNumber: '12345691', createdTimestamp: '2024-01-30T09:01:10.851Z' }, - ]; - - const spy = jest.spyOn(logger, 'error'); - - const res = await handler(inputEvent); - - expect(spy).toHaveBeenCalledWith( - `Non current record with sysNum ${inputEvent[0].systemNumber} and timestamp ${inputEvent[0].createdTimestamp}`, - ); - - expect(res.statusCode).toBe(200); - expect(res.body).toBe(`Batch Plate: Updated ${inputEvent.length - 1} tech records and added ${inputEvent.length - 1} to sqs`); - - const inspectPlateOne = await getBySystemNumberAndCreatedTimestamp( - inputEvent[0].systemNumber, - inputEvent[0].createdTimestamp, - ); - const inspectPlateTwo = await getBySystemNumberAndCreatedTimestamp( - inputEvent[1].systemNumber, - inputEvent[1].createdTimestamp, - ); - - expect(inspectPlateOne).not.toHaveProperty('techRecord_plates_0_plateIssuer'); - expect(inspectPlateTwo).toEqual(expect.objectContaining({ techRecord_plates_0_plateIssuer: batchIssuerName })); - }); - - it('should only complete 1 of two updates if the record isnt a trl or hgv', async () => { - process.env.AWS_SAM_LOCAL = 'true'; - - const inputEvent = [ - { systemNumber: 'SNINVALIDCLASS', createdTimestamp: '2024-01-08T09:14:36.351Z' }, - { systemNumber: '12345692', createdTimestamp: '2024-01-29T14:57:30.871Z' }, - ]; - - const spy = jest.spyOn(logger, 'error'); - - const res = await handler(inputEvent); - - expect(spy).toHaveBeenCalledWith( - `Non trl or hgv record with sysNum ${inputEvent[0].systemNumber} and timestamp ${inputEvent[0].createdTimestamp}`, - ); - expect(res.statusCode).toBe(200); - expect(res.body).toBe(`Batch Plate: Updated ${inputEvent.length - 1} tech records and added ${inputEvent.length - 1} to sqs`); - - const inspectPlateOne = await getBySystemNumberAndCreatedTimestamp( - inputEvent[0].systemNumber, - inputEvent[0].createdTimestamp, - ); - const inspectPlateTwo = await getBySystemNumberAndCreatedTimestamp( - inputEvent[1].systemNumber, - inputEvent[1].createdTimestamp, - ); - - expect(inspectPlateOne).not.toHaveProperty('techRecord_plates_0_plateIssuer'); - expect(inspectPlateTwo).toEqual(expect.objectContaining({ techRecord_plates_0_plateIssuer: batchIssuerName })); - }); - }); -}); diff --git a/src/hotfix/cb2-11175/tests/resources/event.json b/src/hotfix/cb2-11175/tests/resources/event.json deleted file mode 100644 index 86067b7e..00000000 --- a/src/hotfix/cb2-11175/tests/resources/event.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { "systemNumber": "12345678", "createdTimestamp": "2024-02-05T14:35:00.777Z"}, - { "systemNumber": "12345680", "createdTimestamp": "2024-02-05T11:14:29.738Z"}, - { "systemNumber": "12345681", "createdTimestamp": "2024-02-05T10:02:48.766Z"}, - { "systemNumber": "12345682", "createdTimestamp": "2024-02-05T08:27:22.596Z"}, - { "systemNumber": "12345683", "createdTimestamp": "2024-02-02T12:00:08.761Z"} -] \ No newline at end of file diff --git a/template.yml b/template.yml index e113109e..b782613d 100644 --- a/template.yml +++ b/template.yml @@ -187,7 +187,7 @@ Resources: BatchPlateCreation: Type: 'AWS::Serverless::Function' Properties: - CodeUri: src/hotfix/cb2-11175/ + CodeUri: src/handler/ Handler: batchPlateCreation.handler Runtime: nodejs18.x Timeout: 20 diff --git a/src/hotfix/cb2-11175/resources/batchPlatesData.json b/tests/resources/batchPlatesData.json similarity index 99% rename from src/hotfix/cb2-11175/resources/batchPlatesData.json rename to tests/resources/batchPlatesData.json index dfc72622..c99ffe95 100644 --- a/src/hotfix/cb2-11175/resources/batchPlatesData.json +++ b/tests/resources/batchPlatesData.json @@ -51,4 +51,4 @@ { "systemNumber": "12345728", "createdTimestamp": "2024-01-08 15:39:04.808" }, { "systemNumber": "12345729", "createdTimestamp": "2024-01-08 15:00:04.361" }, { "systemNumber": "12345730", "createdTimestamp": "2024-01-08 09:14:36.351" } - ] \ No newline at end of file + ] diff --git a/src/hotfix/cb2-11175/tests/resources/technical-records-v3-no-plates.json b/tests/resources/technical-records-v3-no-plates.json similarity index 100% rename from src/hotfix/cb2-11175/tests/resources/technical-records-v3-no-plates.json rename to tests/resources/technical-records-v3-no-plates.json diff --git a/tests/unit/handler/batchPlateCreation.unit.test.ts b/tests/unit/handler/batchPlateCreation.unit.test.ts new file mode 100644 index 00000000..34eb0b77 --- /dev/null +++ b/tests/unit/handler/batchPlateCreation.unit.test.ts @@ -0,0 +1,254 @@ +import { SQSEvent } from 'aws-lambda'; +import { v4 as uuidv4 } from 'uuid'; +import { TechRecordGETHGV, TechRecordGETTRL } from '@dvsa/cvs-type-definitions/types/v3/tech-record/tech-record-verb-vehicle-type'; +import { TechRecordComplete } from '@dvsa/cvs-type-definitions/types/v3/tech-record/tech-record-status'; +import { getBySystemNumberAndCreatedTimestamp, inPlaceRecordUpdate } from '../../../src/services/database'; +import { formatTechRecord } from '../../../src/util/formatTechRecord'; +import { addToSqs } from '../../../src/services/sqs'; +import { handler } from '../../../src/handler/batchPlateCreation'; +import logger, { logError } from '../../../src/util/logger'; +import { StatusCode } from '../../../src/util/enum'; + +jest.mock('uuid'); +jest.mock('../../../src/services/database'); +jest.mock('../../../src/util/formatTechRecord'); +jest.mock('../../../src/services/sqs'); +jest.mock('../../../src/util/logger'); +jest.mock('../../../src/util/errorMessage'); +jest.mock('@aws-sdk/client-sqs'); + +describe('Batch Plate Handler', () => { + beforeEach(() => { + jest.clearAllMocks(); + process.env.DOC_GEN_SQS_QUEUE = 'test-queue-url'; + }); + + it('should process valid records successfully', async () => { + const mockEvent = createMockSQSEvent([ + { systemNumber: '12345690', createdTimestamp: '2024-01-30T09:10:32.594Z' }, + { systemNumber: '12345691', createdTimestamp: '2024-01-30T09:01:10.851Z' }, + ]); + + const mockDbRecord1 = { + systemNumber: '12345690', + createdTimestamp: '2024-01-30T09:10:32.594Z', + techRecord_statusCode: StatusCode.CURRENT, + techRecord_vehicleType: 'hgv', + } as TechRecordGETHGV; + const mockDbRecord2 = { + systemNumber: '12345691', + createdTimestamp: '2024-01-30T09:01:10.851Z', + techRecord_statusCode: StatusCode.CURRENT, + techRecord_vehicleType: 'trl', + } as TechRecordGETTRL; + + (getBySystemNumberAndCreatedTimestamp as jest.Mock) + .mockResolvedValueOnce(mockDbRecord1) + .mockResolvedValueOnce(mockDbRecord2); + + (formatTechRecord as jest.Mock).mockImplementation((record) => ({ + ...record, + techRecord_plates: [], + } as TechRecordComplete)); + + (uuidv4 as jest.Mock).mockReturnValue('mock-uuid'); + + await handler(mockEvent); + + expect(getBySystemNumberAndCreatedTimestamp).toHaveBeenCalledTimes(2); + expect(inPlaceRecordUpdate).toHaveBeenCalledTimes(2); + expect(addToSqs).toHaveBeenCalledTimes(2); + expect(logger.info).toHaveBeenCalledWith('Batch Plate: Updated 2 tech records and added 2 to SQS'); + expect(logError).not.toHaveBeenCalled(); + }); + + it('should handle missing records', async () => { + const mockEvent = createMockSQSEvent([ + { systemNumber: '1234234', createdTimestamp: '2023-01-01T00:00:00.000Z' }, + ]); + + (getBySystemNumberAndCreatedTimestamp as jest.Mock).mockResolvedValue(undefined); + + await expect(handler(mockEvent)).rejects.toThrow('Missing record: sysNum 1234234, timestamp 2023-01-01T00:00:00.000Z'); + expect(inPlaceRecordUpdate).not.toHaveBeenCalled(); + expect(addToSqs).not.toHaveBeenCalled(); + expect(logError).toHaveBeenCalledWith('Error in batch processing', new Error( + 'Missing record: sysNum 1234234, timestamp 2023-01-01T00:00:00.000Z', + )); + }); + + it('should handle non current records', async () => { + const mockEvent = createMockSQSEvent([ + { systemNumber: '12345679', createdTimestamp: '2024-02-05T11:40:52.073Z' }, + ]); + + const mockDbRecord = { + systemNumber: '12345679', + createdTimestamp: '2024-02-05T11:40:52.073Z', + techRecord_statusCode: 'archived' as StatusCode, + techRecord_vehicleType: 'hgv', + } as TechRecordGETHGV; + (getBySystemNumberAndCreatedTimestamp as jest.Mock).mockResolvedValue(mockDbRecord); + + await expect(handler(mockEvent)).rejects.toThrow('Non current record: statusCode archived'); + expect(inPlaceRecordUpdate).not.toHaveBeenCalled(); + expect(addToSqs).not.toHaveBeenCalled(); + expect(logError).toHaveBeenCalledWith( + 'Error in batch processing', + new Error('Non current record: statusCode archived'), + ); + }); + + it('should handle non TRL and non HGV records', async () => { + const mockEvent = createMockSQSEvent([ + { systemNumber: '43124234', createdTimestamp: '2024-01-08T09:14:36.351Z' }, + ]); + const mockDbRecord = { + systemNumber: '43124234', + createdTimestamp: '2024-01-08T09:14:36.351Z', + techRecord_statusCode: StatusCode.CURRENT, + techRecord_vehicleType: 'lgv', + }; + (getBySystemNumberAndCreatedTimestamp as jest.Mock).mockResolvedValue(mockDbRecord); + + await expect(handler(mockEvent)).rejects.toThrow('Invalid vehicle type: lgv'); + expect(inPlaceRecordUpdate).not.toHaveBeenCalled(); + expect(addToSqs).not.toHaveBeenCalled(); + expect(logError).toHaveBeenCalledWith('Error in batch processing', new Error('Invalid vehicle type: lgv')); + }); + + it('should not add a new plate when a batch issuer plate already exists', async () => { + const mockEvent = createMockSQSEvent([ + { systemNumber: '5345635', createdTimestamp: '2024-03-17T10:00:00.000Z' }, + ]); + const mockDbRecord = { + systemNumber: '5345635', + createdTimestamp: '2024-03-17T10:00:00.000Z', + techRecord_statusCode: StatusCode.CURRENT, + techRecord_vehicleType: 'hgv', + techRecord_plates: [ + { + plateSerialNumber: 'existing-batch-plate', + plateIssueDate: '2024-01-01T00:00:00.000Z', + plateReasonForIssue: 'Replacement', + plateIssuer: 'CVS Batch Plate Generation', + }, + ], + } as TechRecordGETHGV; + + (getBySystemNumberAndCreatedTimestamp as jest.Mock).mockResolvedValue(mockDbRecord); + (formatTechRecord as jest.Mock).mockImplementation((record) => ({ ...record } as TechRecordGETHGV)); + + await handler(mockEvent); + + expect(logger.info).toHaveBeenCalledWith('Batch Plate: Updated 0 tech records and added 0 to SQS'); + expect(inPlaceRecordUpdate).not.toHaveBeenCalled(); + expect(addToSqs).not.toHaveBeenCalled(); + expect(logError).not.toHaveBeenCalled(); + }); + + it('should add a new plate when the record has no existing plates', async () => { + const mockEvent = createMockSQSEvent([ + { systemNumber: '9876543', createdTimestamp: '2024-03-20T10:00:00.000Z' }, + ]); + + const mockDbRecord = { + systemNumber: '9876543', + createdTimestamp: '2024-03-20T10:00:00.000Z', + techRecord_statusCode: StatusCode.CURRENT, + techRecord_vehicleType: 'hgv', + }; + + (getBySystemNumberAndCreatedTimestamp as jest.Mock).mockResolvedValue(mockDbRecord); + (formatTechRecord as jest.Mock).mockImplementation((record) => ({ ...record } as TechRecordGETHGV)); + (uuidv4 as jest.Mock).mockReturnValue('new-plate-uuid'); + + const mockDate = new Date('2024-03-20T12:00:00.000Z'); + jest.spyOn(global, 'Date').mockImplementation(() => mockDate); + + await handler(mockEvent); + + expect(inPlaceRecordUpdate).toHaveBeenCalledTimes(1); + expect(addToSqs).toHaveBeenCalledTimes(1); + expect(logger.info).toHaveBeenCalledWith('Batch Plate: Updated 1 tech records and added 1 to SQS'); + expect(logError).not.toHaveBeenCalled(); + }); + + it('should handle errors during individual record processing', async () => { + const mockEvent = createMockSQSEvent([ + { systemNumber: '6574567', createdTimestamp: '2023-01-01T00:00:00.000Z' }, + { systemNumber: '6574568', createdTimestamp: '2023-01-02T00:00:00.000Z' }, + ]); + const mockError = new Error('DynamoDB error'); + (getBySystemNumberAndCreatedTimestamp as jest.Mock) + .mockRejectedValueOnce(mockError) + .mockResolvedValueOnce({ + systemNumber: '6574568', + createdTimestamp: '2023-01-02T00:00:00.000Z', + techRecord_statusCode: StatusCode.CURRENT, + techRecord_vehicleType: 'hgv', + }); + + (formatTechRecord as jest.Mock).mockImplementation((record) => ({ + ...record, + techRecord_plates: [], + } as TechRecordGETHGV)); + + await expect(handler(mockEvent)).rejects.toThrow('DynamoDB error'); + expect(inPlaceRecordUpdate).toHaveBeenCalledTimes(1); + expect(addToSqs).toHaveBeenCalledTimes(1); + expect(logError).toHaveBeenCalledWith('Error in batch processing', new Error('DynamoDB error')); + }); + + it('should use an empty string for SQS queue URL when DOC_GEN_SQS_QUEUE is undefined', async () => { + const mockEvent = createMockSQSEvent([ + { systemNumber: '1122334', createdTimestamp: '2024-03-21T10:00:00.000Z' }, + ]); + + const mockDbRecord = { + systemNumber: '1122334', + createdTimestamp: '2024-03-21T10:00:00.000Z', + techRecord_statusCode: StatusCode.CURRENT, + techRecord_vehicleType: 'hgv', + techRecord_plates: [], + }; + + (getBySystemNumberAndCreatedTimestamp as jest.Mock).mockResolvedValue(mockDbRecord); + (formatTechRecord as jest.Mock).mockImplementation((record) => ({ ...record } as TechRecordGETHGV)); + (uuidv4 as jest.Mock).mockReturnValue('new-uuid'); + + const mockDate = new Date('2024-03-21T12:00:00.000Z'); + jest.spyOn(global, 'Date').mockImplementation(() => mockDate); + const originalEnv = process.env.DOC_GEN_SQS_QUEUE; + delete process.env.DOC_GEN_SQS_QUEUE; + + await handler(mockEvent); + + process.env.DOC_GEN_SQS_QUEUE = originalEnv; + + expect(addToSqs).toHaveBeenCalledTimes(1); + expect(logger.info).toHaveBeenCalledWith('Batch Plate: Updated 1 tech records and added 1 to SQS'); + expect(logError).not.toHaveBeenCalled(); + }); +}); + +function createMockSQSEvent(records: { systemNumber: string; createdTimestamp: string }[]): SQSEvent { + return { + Records: records.map((record) => ({ + messageId: 'messageId', + receiptHandle: 'receiptHandle', + body: JSON.stringify(record), + attributes: { + ApproximateReceiveCount: '1', + SentTimestamp: '1523232000000', + SenderId: '123456789012', + ApproximateFirstReceiveTimestamp: '1523232000001', + }, + messageAttributes: {}, + md5OfBody: 'test-md5', + eventSource: 'aws:sqs', + eventSourceARN: 'arn:aws:sqs:us-east-1:14342343:MyQueue', + awsRegion: 'us-east-1', + })), + }; +} From 51d6c17bbe9636ed7edf847ce1e7fb45330979c1 Mon Sep 17 00:00:00 2001 From: Daniel Searle Date: Mon, 23 Sep 2024 09:20:02 +0100 Subject: [PATCH 4/5] feat(CB2-13670): seed data added --- manifest.json | 2 +- ...echnical-records-v3-with-batch-plates.json | 113794 +++++++++++++++ 2 files changed, 113795 insertions(+), 1 deletion(-) create mode 100644 tests/resources/technical-records-v3-with-batch-plates.json diff --git a/manifest.json b/manifest.json index 6a5aac1d..c1398b3d 100644 --- a/manifest.json +++ b/manifest.json @@ -8,7 +8,7 @@ "monorepo": true, "dynamo_tables": [ { - "flat-tech-records": "technical-records-v3.json" + "flat-tech-records": "technical-records-v3-with-batch-plates.json" } ] } diff --git a/tests/resources/technical-records-v3-with-batch-plates.json b/tests/resources/technical-records-v3-with-batch-plates.json new file mode 100644 index 00000000..b9d384d3 --- /dev/null +++ b/tests/resources/technical-records-v3-with-batch-plates.json @@ -0,0 +1,113794 @@ +[ + { + "systemNumber": "XYZEP5JYOMM00020", + "createdTimestamp": "2019-06-24T10:26:56.903Z", + "partialVin": "400020", + "primaryVrm": "SJG3075", + "secondaryVrms": [ + "SVNS10" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "systemNumber": "XYZEP5JYOMM00020", + "createdTimestamp": "2019-06-22T10:26:55.903Z", + "partialVin": "400020", + "primaryVrm": "SJG3075", + "secondaryVrms": [ + "SVNS10" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "systemNumber": "XYZEP5JYOMM00020", + "createdTimestamp": "2019-06-21T10:26:50.903Z", + "partialVin": "400020", + "primaryVrm": "SJG3075", + "secondaryVrms": [ + "SVNS10" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": null, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": null, + "techRecord_axles_2_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "systemNumber": "XYZEP5JYOMM00020", + "createdTimestamp": "2019-06-19T10:26:51.903Z", + "partialVin": "400020", + "primaryVrm": "SJG3075", + "secondaryVrms": [ + "SVNS10" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": null, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": null, + "techRecord_axles_2_weights_gbWeight": null, + "techRecord_plates_1_extraInfo": "more info", + "techRecord_plates_0_extraInfo": "more info", + "techRecord_plates_1_info": "info", + "techRecord_plates_0_info": "info", + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "systemNumber": "XYZEP5JYOMM00020", + "createdTimestamp": "2019-06-16T10:26:52.903Z", + "partialVin": "400020", + "primaryVrm": "SJG3075", + "secondaryVrms": [ + "SVNS10" + ], + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.905Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "systemNumber": "XYZEP5JYOMM00020", + "createdTimestamp": "2019-06-15T10:26:53.903Z", + "partialVin": "400020", + "primaryVrm": "SJG3075", + "secondaryVrms": [ + "SVNS10" + ], + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.905Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "systemNumber": "XYZEP5JYOMM00020", + "createdTimestamp": "2019-06-19T10:26:54.903Z", + "partialVin": "400020", + "primaryVrm": "SJG3075", + "secondaryVrms": [ + "SVNS10" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": null, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": null, + "techRecord_axles_2_weights_gbWeight": null, + "techRecord_plates_1_extraInfo": "more info", + "techRecord_plates_0_extraInfo": "more info", + "techRecord_plates_1_info": "info", + "techRecord_plates_0_info": "info", + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT", + "techRecord_dimensions_axleSpacing_0_axle": "1-2", + "techRecord_dimensions_axleSpacing_0_value": "123", + "techRecord_dimensions_axleSpacing_1_axle": "2-3", + "techRecord_dimensions_axleSpacing_1_value": "321" + }, + { + "systemNumber": "11000162", + "createdTimestamp": "2023-09-13T13:06:51.221Z", + "partialVin": "123456", + "primaryVrm": "1100008Z", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "22 Company building", + "techRecord_applicantDetails_address2": "Country Lane", + "techRecord_applicantDetails_address3": "West Midlands", + "techRecord_applicantDetails_emailAddress": "company@email.com", + "techRecord_applicantDetails_name": "COMPANY NUMBER 1", + "techRecord_applicantDetails_postCode": "B1 444", + "techRecord_applicantDetails_postTown": "Birmingham", + "techRecord_applicantDetails_telephoneNumber": "0001111222200111", + "techRecord_approvalType": "NSSTA", + "techRecord_approvalTypeNumber": "123123", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 148, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": "", + "techRecord_axles_0_tyres_tyreCode": 450, + "techRecord_axles_0_tyres_tyreSize": "11/70-22.5", + "techRecord_axles_0_weights_designWeight": 123, + "techRecord_axles_0_weights_eecWeight": 123, + "techRecord_axles_0_weights_gbWeight": 123, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 151, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "", + "techRecord_axles_1_tyres_tyreCode": 450, + "techRecord_axles_1_tyres_tyreSize": "11/70-22.5", + "techRecord_axles_1_weights_designWeight": 123, + "techRecord_axles_1_weights_eecWeight": 456, + "techRecord_axles_1_weights_gbWeight": 123, + "techRecord_bodyType_code": "c", + "techRecord_bodyType_description": "refrigerated", + "techRecord_brakes_dtpNumber": "12444", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2023-09-13T13:06:51.221Z", + "techRecord_createdById": "962f584f-a9b8-4b39-a9d2-60789e185f26", + "techRecord_createdByName": "John Smith", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 123, + "techRecord_dimensions_length": 123, + "techRecord_dimensions_width": 123, + "techRecord_drawbarCouplingFitted": false, + "techRecord_emissionsLimit": 11, + "techRecord_euroStandard": "Euro 4", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": 123, + "techRecord_frontAxleTo5thWheelMin": 123, + "techRecord_frontAxleToRearAxle": 123, + "techRecord_frontVehicleTo5thWheelCouplingMax": 123, + "techRecord_frontVehicleTo5thWheelCouplingMin": 123, + "techRecord_fuelPropulsionSystem": "Diesel", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 123, + "techRecord_grossEecWeight": 123, + "techRecord_grossGbWeight": 123, + "techRecord_lastUpdatedAt": "2023-09-13T13:09:42.017Z", + "techRecord_lastUpdatedById": "962f584f-a9b8-4b39-a9d2-60789e185f26", + "techRecord_lastUpdatedByName": "John Smith", + "techRecord_make": "AVIA", + "techRecord_manufactureYear": 1995, + "techRecord_maxTrainDesignWeight": 231, + "techRecord_maxTrainEecWeight": 123, + "techRecord_maxTrainGbWeight": 213, + "techRecord_microfilm_microfilmDocumentType": "Tempo 100 Sp Ord", + "techRecord_microfilm_microfilmRollNumber": "12345", + "techRecord_microfilm_microfilmSerialNumber": "1234", + "techRecord_model": "Custom", + "techRecord_noOfAxles": 2, + "techRecord_notes": "hgv record complete", + "techRecord_ntaNumber": "123", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "hgv record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "1998-02-14", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 123, + "techRecord_trainEecWeight": 123, + "techRecord_trainGbWeight": 123, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "123", + "techRecord_variantVersionNumber": "123", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "articulated", + "techRecord_vehicleType": "hgv", + "vin": "123456" + }, + { + "systemNumber": "11000162", + "createdTimestamp": "2023-09-13T13:09:42.018Z", + "partialVin": "123456", + "primaryVrm": "1100008Z", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "22 Company building", + "techRecord_applicantDetails_address2": "Country Lane", + "techRecord_applicantDetails_address3": "West Midlands", + "techRecord_applicantDetails_emailAddress": "company@email.com", + "techRecord_applicantDetails_name": "COMPANY NUMBER 1", + "techRecord_applicantDetails_postCode": "B1 444", + "techRecord_applicantDetails_postTown": "Birmingham", + "techRecord_applicantDetails_telephoneNumber": "0001111222200111", + "techRecord_approvalType": "NSSTA", + "techRecord_approvalTypeNumber": "123123", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 148, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": "", + "techRecord_axles_0_tyres_tyreCode": 450, + "techRecord_axles_0_tyres_tyreSize": "11/70-22.5", + "techRecord_axles_0_weights_designWeight": 123, + "techRecord_axles_0_weights_eecWeight": 123, + "techRecord_axles_0_weights_gbWeight": 123, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 151, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "", + "techRecord_axles_1_tyres_tyreCode": 450, + "techRecord_axles_1_tyres_tyreSize": "11/70-22.5", + "techRecord_axles_1_weights_designWeight": 123, + "techRecord_axles_1_weights_eecWeight": 456, + "techRecord_axles_1_weights_gbWeight": 123, + "techRecord_bodyType_code": "c", + "techRecord_bodyType_description": "refrigerated", + "techRecord_brakes_dtpNumber": "12444", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2023-09-13T13:09:42.018Z", + "techRecord_createdById": "962f584f-a9b8-4b39-a9d2-60789e185f26", + "techRecord_createdByName": "John Smith", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 123, + "techRecord_dimensions_length": 123, + "techRecord_dimensions_width": 123, + "techRecord_drawbarCouplingFitted": false, + "techRecord_emissionsLimit": 11, + "techRecord_euroStandard": "Euro 4", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": 123, + "techRecord_frontAxleTo5thWheelMin": 123, + "techRecord_frontAxleToRearAxle": 123, + "techRecord_frontVehicleTo5thWheelCouplingMax": 123, + "techRecord_frontVehicleTo5thWheelCouplingMin": 123, + "techRecord_fuelPropulsionSystem": "Diesel", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 123, + "techRecord_grossEecWeight": 123, + "techRecord_grossGbWeight": 123, + "techRecord_make": "AVIA", + "techRecord_manufactureYear": 1995, + "techRecord_maxTrainDesignWeight": 231, + "techRecord_maxTrainEecWeight": 123, + "techRecord_maxTrainGbWeight": 213, + "techRecord_microfilm_microfilmDocumentType": "Tempo 100 Sp Ord", + "techRecord_microfilm_microfilmRollNumber": "12345", + "techRecord_microfilm_microfilmSerialNumber": "1234", + "techRecord_model": "Custom", + "techRecord_noOfAxles": 2, + "techRecord_notes": "hgv record complete", + "techRecord_ntaNumber": "123", + "techRecord_offRoad": false, + "techRecord_plates_0_plateIssueDate": "2023-09-13T13:10:44.563Z", + "techRecord_plates_0_plateIssuer": "John Smith", + "techRecord_plates_0_plateReasonForIssue": "Free replacement", + "techRecord_plates_0_plateSerialNumber": "1", + "techRecord_reasonForCreation": "promoting record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "1998-02-14", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 123, + "techRecord_trainEecWeight": 123, + "techRecord_trainGbWeight": 123, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "123", + "techRecord_variantVersionNumber": "123", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "articulated", + "techRecord_vehicleType": "hgv", + "vin": "123456" + }, + { + "systemNumber": "1101234", + "createdTimestamp": "2023-09-13T13:06:51.221Z", + "partialVin": "123456", + "primaryVrm": "1100008Z", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "22 Company building", + "techRecord_applicantDetails_address2": "Country Lane", + "techRecord_applicantDetails_address3": "West Midlands", + "techRecord_applicantDetails_emailAddress": "company@email.com", + "techRecord_applicantDetails_name": "COMPANY NUMBER 1", + "techRecord_applicantDetails_postCode": "B1 444", + "techRecord_applicantDetails_postTown": "Birmingham", + "techRecord_applicantDetails_telephoneNumber": "0001111222200111", + "techRecord_approvalType": "NSSTA", + "techRecord_approvalTypeNumber": "123123", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 148, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": "", + "techRecord_axles_0_tyres_tyreCode": 450, + "techRecord_axles_0_tyres_tyreSize": "11/70-22.5", + "techRecord_axles_0_weights_designWeight": 123, + "techRecord_axles_0_weights_eecWeight": 123, + "techRecord_axles_0_weights_gbWeight": 123, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 151, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "", + "techRecord_axles_1_tyres_tyreCode": 450, + "techRecord_axles_1_tyres_tyreSize": "11/70-22.5", + "techRecord_axles_1_weights_designWeight": 123, + "techRecord_axles_1_weights_eecWeight": 456, + "techRecord_axles_1_weights_gbWeight": 123, + "techRecord_bodyType_code": "c", + "techRecord_bodyType_description": "refrigerated", + "techRecord_brakes_dtpNumber": "12444", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2023-09-13T13:06:51.221Z", + "techRecord_createdById": "962f584f-a9b8-4b39-a9d2-60789e185f26", + "techRecord_createdByName": "John Smith", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 123, + "techRecord_dimensions_length": 123, + "techRecord_dimensions_width": 123, + "techRecord_drawbarCouplingFitted": false, + "techRecord_emissionsLimit": 11, + "techRecord_euroStandard": "Euro 4", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": 123, + "techRecord_frontAxleTo5thWheelMin": 123, + "techRecord_frontAxleToRearAxle": 123, + "techRecord_frontVehicleTo5thWheelCouplingMax": 123, + "techRecord_frontVehicleTo5thWheelCouplingMin": 123, + "techRecord_fuelPropulsionSystem": "Diesel", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 123, + "techRecord_grossEecWeight": 123, + "techRecord_grossGbWeight": 123, + "techRecord_lastUpdatedAt": "2023-09-13T13:09:42.017Z", + "techRecord_lastUpdatedById": "962f584f-a9b8-4b39-a9d2-60789e185f26", + "techRecord_lastUpdatedByName": "John Smith", + "techRecord_make": "AVIA", + "techRecord_manufactureYear": 1995, + "techRecord_maxTrainDesignWeight": 231, + "techRecord_maxTrainEecWeight": 123, + "techRecord_maxTrainGbWeight": 213, + "techRecord_microfilm_microfilmDocumentType": "Tempo 100 Sp Ord", + "techRecord_microfilm_microfilmRollNumber": "12345", + "techRecord_microfilm_microfilmSerialNumber": "1234", + "techRecord_model": "Custom", + "techRecord_noOfAxles": 2, + "techRecord_notes": "hgv record complete", + "techRecord_ntaNumber": "123", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "hgv record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "1998-02-14", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 123, + "techRecord_trainEecWeight": 123, + "techRecord_trainGbWeight": 123, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "123", + "techRecord_variantVersionNumber": "123", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "articulated", + "techRecord_vehicleType": "hgv", + "vin": "123456" + }, + { + "createdTimestamp": "2019-06-15T10:26:53.903Z", + "partialVin": "700060", + "primaryVrm": "WSG5075", + "secondaryVrms": [ + "BADS70" + ], + "systemNumber": "8AJWFM00066", + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euVehicleCategory": null, + "techRecord_euroStandard": " ", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2023-07-14T09:49:29.745Z", + "techRecord_lastUpdatedById": "123456", + "techRecord_lastUpdatedByName": "Testing Person", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Just a test for unarchiving", + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "createdTimestamp": "2019-06-15T10:36:12.903Z", + "partialVin": "700060", + "primaryVrm": "WSG5075", + "secondaryVrms": [ + "BADS70" + ], + "systemNumber": "8AJWFM00066", + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euVehicleCategory": null, + "techRecord_euroStandard": " ", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2023-07-14T09:49:29.745Z", + "techRecord_lastUpdatedById": "123456", + "techRecord_lastUpdatedByName": "Testing Person", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Just a test for unarchiving", + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "createdTimestamp": "2019-06-15T10:56:19.903Z", + "partialVin": "700060", + "primaryVrm": "WSG5075", + "secondaryVrms": [ + "BADS70" + ], + "systemNumber": "8AJWFM00066", + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T10:26:54.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euVehicleCategory": null, + "techRecord_euroStandard": " ", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2023-07-14T09:49:29.745Z", + "techRecord_lastUpdatedById": "123456", + "techRecord_lastUpdatedByName": "Testing Person", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Just a test for unarchiving", + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "createdTimestamp": "2019-06-22T12:00:00.904Z", + "partialVin": "700060", + "primaryVrm": "WSG5075", + "secondaryVrms": [ + "BADS70" + ], + "systemNumber": "RATMEM00066", + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-22T12:00:00.904Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euVehicleCategory": null, + "techRecord_euroStandard": " ", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2023-07-14T09:59:29.745Z", + "techRecord_lastUpdatedById": "123456", + "techRecord_lastUpdatedByName": "Testing Person", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Just a test for unarchiving", + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleType": "car", + "vin": "DP76UMK4DQLTOT" + }, + { + "systemNumber": "11100136", + "createdTimestamp": "2023-09-20T15:56:43.608Z", + "partialVin": "654645", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "21 TRL building", + "techRecord_applicantDetails_address2": "22 Street", + "techRecord_applicantDetails_address3": "Greater Manchester", + "techRecord_applicantDetails_emailAddress": "trl@company.so", + "techRecord_applicantDetails_name": "TRL company", + "techRecord_applicantDetails_postCode": "M1 1LL", + "techRecord_applicantDetails_postTown": "Manchester", + "techRecord_applicantDetails_telephoneNumber": "01632960655", + "techRecord_approvalType": "NSSTA", + "techRecord_approvalTypeNumber": "e11*NKS*11", + "techRecord_authIntoService_cocIssueDate": "2010-11-11", + "techRecord_authIntoService_dateAuthorised": "2010-11-11", + "techRecord_authIntoService_datePending": "2010-11-11", + "techRecord_authIntoService_dateReceived": "2010-11-11", + "techRecord_authIntoService_dateRejected": "2010-11-11", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 1, + "techRecord_axles_0_brakes_leverLength": 1, + "techRecord_axles_0_brakes_springBrakeParking": false, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 99, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "", + "techRecord_axles_0_tyres_tyreCode": 11, + "techRecord_axles_0_tyres_tyreSize": "670-13", + "techRecord_axles_0_weights_designWeight": 11, + "techRecord_axles_0_weights_eecWeight": 11, + "techRecord_axles_0_weights_gbWeight": 11, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 1, + "techRecord_axles_1_brakes_leverLength": 1, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 98, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "", + "techRecord_axles_1_tyres_tyreCode": 11, + "techRecord_axles_1_tyres_tyreSize": "670-13", + "techRecord_axles_1_weights_designWeight": 11, + "techRecord_axles_1_weights_eecWeight": 11, + "techRecord_axles_1_weights_gbWeight": 11, + "techRecord_bodyType_code": "y", + "techRecord_bodyType_description": "car transporter", + "techRecord_brakes_antilockBrakingSystem": false, + "techRecord_brakes_dtpNumber": "456453", + "techRecord_brakes_loadSensingValve": false, + "techRecord_centreOfRearmostAxleToRearOfTrl": 11, + "techRecord_conversionRefNo": "1111", + "techRecord_couplingCenterToRearAxleMax": 11, + "techRecord_couplingCenterToRearAxleMin": 11, + "techRecord_couplingCenterToRearTrlMax": 11, + "techRecord_couplingCenterToRearTrlMin": 11, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-09-20T15:56:43.608Z", + "techRecord_createdById": "b2bba13c-2a6a-467d-b58c-381582e53be7", + "techRecord_createdByName": "Robin Sterling", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 11, + "techRecord_dimensions_length": 11, + "techRecord_dimensions_width": 11, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2010-11-11", + "techRecord_frameDescription": "Tubular", + "techRecord_frontAxleToRearAxle": 11, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 11, + "techRecord_grossEecWeight": 11, + "techRecord_grossGbWeight": 11, + "techRecord_make": "AIR PRODUCTS", + "techRecord_manufacturerDetails_address1": "54 TRL building", + "techRecord_manufacturerDetails_address2": "11 Line Street", + "techRecord_manufacturerDetails_address3": "Essex", + "techRecord_manufacturerDetails_emailAddress": "manufacturer@trl.tv", + "techRecord_manufacturerDetails_faxNumber": "0161 999 8888", + "techRecord_manufacturerDetails_manufacturerNotes": "great trailers, small prices", + "techRecord_manufacturerDetails_name": "Manufacturer of Trailers", + "techRecord_manufacturerDetails_postCode": "CO4 2RR", + "techRecord_manufacturerDetails_postTown": "Colchester", + "techRecord_manufacturerDetails_telephoneNumber": "01632960655", + "techRecord_manufactureYear": 2010, + "techRecord_maxLoadOnCoupling": 11, + "techRecord_microfilm_microfilmDocumentType": "COIF Master", + "techRecord_microfilm_microfilmRollNumber": "11", + "techRecord_microfilm_microfilmSerialNumber": "11", + "techRecord_model": "Nitrogen", + "techRecord_noOfAxles": 2, + "techRecord_notes": "these are some notes on a trailer", + "techRecord_ntaNumber": "11111", + "techRecord_purchaserDetails_address1": "21 Trailer Road", + "techRecord_purchaserDetails_address2": "11 Park Street", + "techRecord_purchaserDetails_address3": "South Yorkshire", + "techRecord_purchaserDetails_emailAddress": "purchaser@cc.ss", + "techRecord_purchaserDetails_faxNumber": "01632960655", + "techRecord_purchaserDetails_name": "Purchaser Company", + "techRecord_purchaserDetails_postCode": "S10 2FF", + "techRecord_purchaserDetails_postTown": "Sheffield", + "techRecord_purchaserDetails_purchaserNotes": "buys many trailers", + "techRecord_purchaserDetails_telephoneNumber": "01632960655", + "techRecord_rearAxleToRearTrl": 11, + "techRecord_reasonForCreation": "trailer is being created", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2010-11-11", + "techRecord_roadFriendly": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "R", + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "11111", + "techRecord_variantVersionNumber": "1111", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "C530005", + "vin": "654645654645" + }, + { + "systemNumber": "10000555", + "createdTimestamp": "2024-02-05T08:26:15.659Z", + "partialVin": "GVTST1", + "primaryVrm": "HGVTST1", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-02-05T08:26:15.659Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST1" + }, + { + "systemNumber": "10001555", + "createdTimestamp": "2024-02-05T08:26:15.659Z", + "partialVin": "GVTST2", + "primaryVrm": "HGVTST2", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-02-05T08:26:15.659Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST2" + }, + { + "systemNumber": "10000559", + "createdTimestamp": "2024-02-05T08:51:54.172Z", + "partialVin": "GVTST3", + "primaryVrm": "HGVTST3", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "nobody@somewhere.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07257936528", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123456", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "123546", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2024-02-05T08:51:54.172Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 2600, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 2600, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 19, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "n1", + "techRecord_frontAxleTo5thWheelMax": 2600, + "techRecord_frontAxleTo5thWheelMin": 12000, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, + "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, + "techRecord_fuelPropulsionSystem": "Petrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_lastUpdatedAt": "2024-02-05T14:46:26.973Z", + "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", + "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainDesignWeight": 100, + "techRecord_maxTrainEecWeight": 100, + "techRecord_maxTrainGbWeight": 100, + "techRecord_model": "123456", + "techRecord_noOfAxles": 4, + "techRecord_notes": "Complete record for HGV", + "techRecord_ntaNumber": "123456", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 100, + "techRecord_trainEecWeight": 100, + "techRecord_trainGbWeight": 100, + "techRecord_tyreUseCode": "2R", + "techRecord_updateType": "adrUpdate", + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST3" + }, + { + "systemNumber": "10001559", + "createdTimestamp": "2024-02-05T08:51:54.172Z", + "partialVin": "GVTST4", + "primaryVrm": "HGVTST4", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "nobody@somewhere.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07257936528", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123456", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "123546", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2024-02-05T08:51:54.172Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 2600, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 2600, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 19, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "n1", + "techRecord_frontAxleTo5thWheelMax": 2600, + "techRecord_frontAxleTo5thWheelMin": 12000, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, + "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, + "techRecord_fuelPropulsionSystem": "Petrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_lastUpdatedAt": "2024-02-05T14:46:26.973Z", + "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", + "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainDesignWeight": 100, + "techRecord_maxTrainEecWeight": 100, + "techRecord_maxTrainGbWeight": 100, + "techRecord_model": "123456", + "techRecord_noOfAxles": 4, + "techRecord_notes": "Complete record for HGV", + "techRecord_ntaNumber": "123456", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 100, + "techRecord_trainEecWeight": 100, + "techRecord_trainGbWeight": 100, + "techRecord_tyreUseCode": "2R", + "techRecord_updateType": "adrUpdate", + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST4" + }, + { + "systemNumber": "10000569", + "createdTimestamp": "2024-02-05T10:18:35.977Z", + "partialVin": "GVTST5", + "primaryVrm": "HGVTST5", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "12345678", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1235467", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": 10, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07826836837", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "12345", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "123456", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2024-02-05T10:18:35.977Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 2600, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 2600, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 12, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "n1", + "techRecord_frontAxleTo5thWheelMax": 2600, + "techRecord_frontAxleTo5thWheelMin": 12000, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, + "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, + "techRecord_fuelPropulsionSystem": "Petrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainDesignWeight": 100, + "techRecord_maxTrainEecWeight": 100, + "techRecord_maxTrainGbWeight": 100, + "techRecord_model": "12345", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete HGV Record with ADR Details.", + "techRecord_ntaNumber": "12356", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 100, + "techRecord_trainEecWeight": 100, + "techRecord_trainGbWeight": 100, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST5" + }, + { + "systemNumber": "10000583", + "createdTimestamp": "2024-02-05T11:52:21.884Z", + "partialVin": "GVTST6", + "primaryVrm": "HGVTST6", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "12345", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-02-05T11:52:21.884Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_notes": "Skeleton HGV Semi-Trailer Tank Record with ADR Details", + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST6" + }, + { + "systemNumber": "10000586", + "createdTimestamp": "2024-02-05T12:18:29.778Z", + "partialVin": "GVTST7", + "primaryVrm": "HGVTST7", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Note", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": "1234567", + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": true, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "124356", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1243567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "12356", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "12345467", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": 12, + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123435", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "123", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2024-02-05T12:18:29.778Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 1200, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 2, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "n1", + "techRecord_frontAxleTo5thWheelMax": 12000, + "techRecord_frontAxleTo5thWheelMin": 12000, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMax": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, + "techRecord_fuelPropulsionSystem": "Petrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainDesignWeight": 100, + "techRecord_maxTrainEecWeight": 100, + "techRecord_maxTrainGbWeight": 100, + "techRecord_model": "12345", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete HGV Semi-Trailer Battery with ADR Details", + "techRecord_ntaNumber": "123456", + "techRecord_offRoad": true, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 100, + "techRecord_trainEecWeight": 100, + "techRecord_trainGbWeight": 100, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST7" + }, + { + "systemNumber": "10000589", + "createdTimestamp": "2024-02-05T12:51:10.634Z", + "partialVin": "GVTST8", + "primaryVrm": "GVTST8", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": null, + "techRecord_axles_2_tyres_fitmentCode": null, + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_tyreCode": null, + "techRecord_axles_2_tyres_tyreSize": null, + "techRecord_axles_2_weights_designWeight": null, + "techRecord_axles_2_weights_eecWeight": null, + "techRecord_axles_2_weights_gbWeight": null, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": null, + "techRecord_axles_3_tyres_fitmentCode": null, + "techRecord_axles_3_tyres_plyRating": null, + "techRecord_axles_3_tyres_tyreCode": null, + "techRecord_axles_3_tyres_tyreSize": null, + "techRecord_axles_3_weights_designWeight": null, + "techRecord_axles_3_weights_eecWeight": null, + "techRecord_axles_3_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-02-05T12:51:10.634Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": null, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Skeleton HGV Semi-Trailer Battery with ADR Details.", + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST8" + }, + { + "systemNumber": "10000556", + "createdTimestamp": "2024-02-05T08:27:13.558Z", + "partialVin": "GVTST1", + "primaryVrm": "LGVTST1", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T08:27:13.558Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": null, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": null, + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST1" + }, + { + "systemNumber": "10001556", + "createdTimestamp": "2024-02-05T08:27:13.558Z", + "partialVin": "GVTST2", + "primaryVrm": "LGVTST2", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T08:27:13.558Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": null, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": null, + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST2" + }, + { + "systemNumber": "10000560", + "createdTimestamp": "2024-02-05T08:53:17.809Z", + "partialVin": "GVTST3", + "primaryVrm": "LGVTST3", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07486276309", + "techRecord_createdAt": "2024-02-05T08:53:17.809Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Complete LGV Record", + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST3" + }, + { + "systemNumber": "10001560", + "createdTimestamp": "2024-02-05T08:53:17.809Z", + "partialVin": "GVTST4", + "primaryVrm": "LGVTST4", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07486276309", + "techRecord_createdAt": "2024-02-05T08:53:17.809Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Complete LGV Record", + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST4" + }, + { + "systemNumber": "10000573", + "createdTimestamp": "2024-02-05T10:27:21.754Z", + "partialVin": "GVTST5", + "primaryVrm": "LGVTST5", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": 10, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07827638498", + "techRecord_createdAt": "2024-02-05T10:27:21.754Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "A Complete LGV Record with ADR Details.", + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST5" + }, + { + "systemNumber": "10000584", + "createdTimestamp": "2024-02-05T11:56:05.666Z", + "partialVin": "GVTST6", + "primaryVrm": "LGVTST6", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123123", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T11:56:05.666Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": null, + "techRecord_lastUpdatedAt": "2024-02-05T15:09:22.135Z", + "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", + "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", + "techRecord_manufactureYear": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Skeleton LGV Semi-Trailer Tank with ADR Details", + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "current", + "techRecord_updateType": "adrUpdate", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST6" + }, + { + "systemNumber": "10000587", + "createdTimestamp": "2024-02-05T12:26:02.064Z", + "partialVin": "GVTST7", + "primaryVrm": "LGVTST7", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Note", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1243567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": 1234567, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T12:26:02.064Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "A Complete LGV Semi-Trailer Battery with ADR Details.", + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST7" + }, + { + "systemNumber": "10000590", + "createdTimestamp": "2024-02-05T13:16:26.603Z", + "partialVin": "GVTST8", + "primaryVrm": "LGVTST8", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "1234567", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T13:16:26.603Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": "A Skeleton LGV Semi-Trailer Battery with ADR Details.", + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST8" + }, + { + "systemNumber": "10000557", + "createdTimestamp": "2024-02-05T08:31:56.200Z", + "partialVin": "STTRL1", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T08:31:56.200Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST1", + "vin": "TRLTST1" + }, + { + "systemNumber": "10001557", + "createdTimestamp": "2024-02-05T08:31:56.200Z", + "partialVin": "RLTST2", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T08:31:56.200Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST2", + "vin": "TRLTST2" + }, + { + "systemNumber": "10000564", + "createdTimestamp": "2024-02-05T09:04:17.170Z", + "partialVin": "RLTST3", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07812736748", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123435", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 100, + "techRecord_axles_0_brakes_leverLength": 100, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 100, + "techRecord_axles_1_brakes_leverLength": 100, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 100, + "techRecord_axles_2_brakes_leverLength": 100, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_brakes_brakeActuator": 100, + "techRecord_axles_3_brakes_leverLength": 100, + "techRecord_axles_3_brakes_springBrakeParking": true, + "techRecord_axles_3_parkingBrakeMrk": true, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": false, + "techRecord_brakes_dtpNumber": "123435", + "techRecord_brakes_loadSensingValve": false, + "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, + "techRecord_conversionRefNo": "123456", + "techRecord_couplingCenterToRearAxleMax": 12000, + "techRecord_couplingCenterToRearAxleMin": 12000, + "techRecord_couplingCenterToRearTrlMax": 12000, + "techRecord_couplingCenterToRearTrlMin": 12000, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T09:04:17.170Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 2600, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 12000, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_euVehicleCategory": "m1", + "techRecord_firstUseDate": "2012-12-12", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "31807HM&G", + "techRecord_manufacturerDetails_address1": "Address", + "techRecord_manufacturerDetails_address2": "Address", + "techRecord_manufacturerDetails_address3": "County", + "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", + "techRecord_manufacturerDetails_faxNumber": "07916836746", + "techRecord_manufacturerDetails_manufacturerNotes": "Notes", + "techRecord_manufacturerDetails_name": "Name", + "techRecord_manufacturerDetails_postCode": "PSTCD", + "techRecord_manufacturerDetails_postTown": "Town", + "techRecord_manufacturerDetails_telephoneNumber": "07625836846", + "techRecord_manufactureYear": 2012, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": "124354", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete TRL Record.", + "techRecord_ntaNumber": "123456", + "techRecord_purchaserDetails_address1": "Address", + "techRecord_purchaserDetails_address2": "Address", + "techRecord_purchaserDetails_address3": "County", + "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", + "techRecord_purchaserDetails_faxNumber": "07652873647", + "techRecord_purchaserDetails_name": "Name", + "techRecord_purchaserDetails_postCode": "PSTCD", + "techRecord_purchaserDetails_postTown": "Town", + "techRecord_purchaserDetails_purchaserNotes": "Notes", + "techRecord_purchaserDetails_telephoneNumber": "07827635746", + "techRecord_rearAxleToRearTrl": 2600, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST3", + "vin": "TRLTST3" + }, + { + "systemNumber": "10001564", + "createdTimestamp": "2024-02-05T09:04:17.170Z", + "partialVin": "RLTST4", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07812736748", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123435", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 100, + "techRecord_axles_0_brakes_leverLength": 100, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 100, + "techRecord_axles_1_brakes_leverLength": 100, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 100, + "techRecord_axles_2_brakes_leverLength": 100, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_brakes_brakeActuator": 100, + "techRecord_axles_3_brakes_leverLength": 100, + "techRecord_axles_3_brakes_springBrakeParking": true, + "techRecord_axles_3_parkingBrakeMrk": true, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": false, + "techRecord_brakes_dtpNumber": "123435", + "techRecord_brakes_loadSensingValve": false, + "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, + "techRecord_conversionRefNo": "123456", + "techRecord_couplingCenterToRearAxleMax": 12000, + "techRecord_couplingCenterToRearAxleMin": 12000, + "techRecord_couplingCenterToRearTrlMax": 12000, + "techRecord_couplingCenterToRearTrlMin": 12000, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T09:04:17.170Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 2600, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 12000, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_euVehicleCategory": "m1", + "techRecord_firstUseDate": "2012-12-12", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "31807HM&G", + "techRecord_manufacturerDetails_address1": "Address", + "techRecord_manufacturerDetails_address2": "Address", + "techRecord_manufacturerDetails_address3": "County", + "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", + "techRecord_manufacturerDetails_faxNumber": "07916836746", + "techRecord_manufacturerDetails_manufacturerNotes": "Notes", + "techRecord_manufacturerDetails_name": "Name", + "techRecord_manufacturerDetails_postCode": "PSTCD", + "techRecord_manufacturerDetails_postTown": "Town", + "techRecord_manufacturerDetails_telephoneNumber": "07625836846", + "techRecord_manufactureYear": 2012, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": "124354", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete TRL Record.", + "techRecord_ntaNumber": "123456", + "techRecord_purchaserDetails_address1": "Address", + "techRecord_purchaserDetails_address2": "Address", + "techRecord_purchaserDetails_address3": "County", + "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", + "techRecord_purchaserDetails_faxNumber": "07652873647", + "techRecord_purchaserDetails_name": "Name", + "techRecord_purchaserDetails_postCode": "PSTCD", + "techRecord_purchaserDetails_postTown": "Town", + "techRecord_purchaserDetails_purchaserNotes": "Notes", + "techRecord_purchaserDetails_telephoneNumber": "07827635746", + "techRecord_rearAxleToRearTrl": 2600, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST4", + "vin": "TRLTST4" + }, + { + "systemNumber": "10000575", + "createdTimestamp": "2024-02-05T10:41:18.513Z", + "partialVin": "RLTST5", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", + "techRecord_adrDetails_adrTypeApprovalNo": "1234567", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": 10, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07625938746", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1234567", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 100, + "techRecord_axles_0_brakes_leverLength": 100, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 100, + "techRecord_axles_1_brakes_leverLength": 100, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 100, + "techRecord_axles_2_brakes_leverLength": 100, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_brakes_brakeActuator": 100, + "techRecord_axles_3_brakes_leverLength": 100, + "techRecord_axles_3_brakes_springBrakeParking": true, + "techRecord_axles_3_parkingBrakeMrk": true, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "123456", + "techRecord_brakes_loadSensingValve": true, + "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, + "techRecord_conversionRefNo": "123546", + "techRecord_couplingCenterToRearAxleMax": 12000, + "techRecord_couplingCenterToRearAxleMin": 12000, + "techRecord_couplingCenterToRearTrlMax": 12000, + "techRecord_couplingCenterToRearTrlMin": 12000, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T10:41:18.513Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 2600, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 12000, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_euVehicleCategory": "m1", + "techRecord_firstUseDate": "2012-12-12", + "techRecord_frameDescription": "Channel section", + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_lastUpdatedAt": "2024-02-05T15:32:15.140Z", + "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", + "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", + "techRecord_make": "31807HM&G", + "techRecord_manufacturerDetails_address1": "Address", + "techRecord_manufacturerDetails_address2": "Address", + "techRecord_manufacturerDetails_address3": "County", + "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", + "techRecord_manufacturerDetails_faxNumber": "07825735736", + "techRecord_manufacturerDetails_manufacturerNotes": "Manufacturer Notes", + "techRecord_manufacturerDetails_name": "Name", + "techRecord_manufacturerDetails_postCode": "PSTCD", + "techRecord_manufacturerDetails_postTown": "Town", + "techRecord_manufacturerDetails_telephoneNumber": "07826354726", + "techRecord_manufactureYear": 2012, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": "123456", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete TRL Record with ADR Details.", + "techRecord_ntaNumber": "1234567", + "techRecord_purchaserDetails_address1": "Address", + "techRecord_purchaserDetails_address2": "Address", + "techRecord_purchaserDetails_address3": "County", + "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", + "techRecord_purchaserDetails_faxNumber": "07625384657", + "techRecord_purchaserDetails_name": "Name", + "techRecord_purchaserDetails_postCode": "PSTCD", + "techRecord_purchaserDetails_postTown": "Town", + "techRecord_purchaserDetails_purchaserNotes": "Purchaser Notes", + "techRecord_purchaserDetails_telephoneNumber": "07087625364", + "techRecord_rearAxleToRearTrl": 2600, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": "2R", + "techRecord_updateType": "adrUpdate", + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST5", + "vin": "TRLTST5" + }, + { + "systemNumber": "10000585", + "createdTimestamp": "2024-02-05T12:01:26.149Z", + "partialVin": "RLTST6", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123123", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T12:01:26.149Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": null, + "techRecord_notes": "A Skeleton TRL Semi-Trailer Tank Record with ADR Details", + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST6", + "vin": "TRLTST6" + }, + { + "systemNumber": "10000588", + "createdTimestamp": "2024-02-05T12:42:03.346Z", + "partialVin": "RLTST7", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": "1243567", + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": true, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": 12, + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123435", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 100, + "techRecord_axles_0_brakes_leverLength": 100, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 100, + "techRecord_axles_1_brakes_leverLength": 100, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 100, + "techRecord_axles_2_brakes_leverLength": 100, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_brakes_brakeActuator": 100, + "techRecord_axles_3_brakes_leverLength": 100, + "techRecord_axles_3_brakes_springBrakeParking": true, + "techRecord_axles_3_parkingBrakeMrk": true, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "124356", + "techRecord_brakes_loadSensingValve": true, + "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, + "techRecord_conversionRefNo": "12343546", + "techRecord_couplingCenterToRearAxleMax": 12000, + "techRecord_couplingCenterToRearAxleMin": 12000, + "techRecord_couplingCenterToRearTrlMax": 12000, + "techRecord_couplingCenterToRearTrlMin": 12000, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T12:42:03.346Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 12000, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_euVehicleCategory": "m1", + "techRecord_firstUseDate": "2012-12-12", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "31807HM&G", + "techRecord_manufacturerDetails_address1": "Address", + "techRecord_manufacturerDetails_address2": "Address", + "techRecord_manufacturerDetails_address3": "County", + "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", + "techRecord_manufacturerDetails_faxNumber": "07816527635", + "techRecord_manufacturerDetails_manufacturerNotes": "Manufacturer Note", + "techRecord_manufacturerDetails_name": "Name", + "techRecord_manufacturerDetails_postCode": "PSTCD", + "techRecord_manufacturerDetails_postTown": "Town", + "techRecord_manufacturerDetails_telephoneNumber": "07265837645", + "techRecord_manufactureYear": 2012, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": "12345", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete TRL Semi-Trailer Battery with ADR Details", + "techRecord_ntaNumber": "123456", + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": 12000, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "S", + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST7", + "vin": "TRLTST7" + }, + { + "systemNumber": "10000591", + "createdTimestamp": "2024-02-05T13:51:35.260Z", + "partialVin": "STTRL8", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": null, + "techRecord_axles_2_tyres_fitmentCode": null, + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_tyreCode": null, + "techRecord_axles_2_tyres_tyreSize": null, + "techRecord_axles_2_weights_designWeight": null, + "techRecord_axles_2_weights_eecWeight": null, + "techRecord_axles_2_weights_gbWeight": null, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": null, + "techRecord_axles_3_tyres_fitmentCode": null, + "techRecord_axles_3_tyres_plyRating": null, + "techRecord_axles_3_tyres_tyreCode": null, + "techRecord_axles_3_tyres_tyreSize": null, + "techRecord_axles_3_weights_designWeight": null, + "techRecord_axles_3_weights_eecWeight": null, + "techRecord_axles_3_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T13:51:35.260Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": null, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Skeleton TRL Semi-Trailer Battery Record with ADR Details.", + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST8", + "vin": "TRLTST8" + }, + { + "systemNumber": "10000598", + "createdTimestamp": "2024-02-05T16:50:16.831Z", + "partialVin": "PACAR1", + "primaryVrm": "PACAR1", + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07926874837", + "techRecord_createdAt": "2024-02-05T16:50:16.831Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "A note.", + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "car", + "vin": "PACAR1" + }, + { + "systemNumber": "10000643", + "createdTimestamp": "2024-03-21T14:12:32.110Z", + "partialVin": "SVTST1", + "primaryVrm": "PSVTST1", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_bodyMake": "NOT KNOWN", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "00000", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "NOT KNOWN", + "techRecord_chassisModel": "NOT KNOWN", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-03-21T14:12:32.110Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": "Redacted", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_dispensations": "", + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": 65, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": null, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "rfc", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": null, + "techRecord_remarks": "", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": null, + "techRecord_seatsUpperDeck": null, + "techRecord_speedLimiterMrk": true, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": null, + "techRecord_vehicleType": "psv", + "vin": "PSVTST1" + }, + { + "systemNumber": "10000644", + "createdTimestamp": "2024-03-21T14:17:45.399Z", + "partialVin": "SVTST2", + "primaryVrm": "PSVTST2", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_bodyMake": "NOT KNOWN", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "00000", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "NOT KNOWN", + "techRecord_chassisModel": "NOT KNOWN", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-03-21T14:17:45.399Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": "Redacted", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": null, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "rfc", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": null, + "techRecord_seatsUpperDeck": null, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": null, + "techRecord_vehicleType": "psv", + "vin": "PSVTST2" + }, + { + "systemNumber": "10000661", + "createdTimestamp": "2024-03-21T14:23:48.580Z", + "partialVin": "SVTST3", + "primaryVrm": "PSVTST3", + "techRecord_alterationMarker": true, + "techRecord_applicationId": "", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123456", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_0_weights_kerbWeight": 100, + "techRecord_axles_0_weights_ladenWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 101, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "8", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 100, + "techRecord_axles_1_tyres_tyreSize": "175-16C", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_1_weights_kerbWeight": 100, + "techRecord_axles_1_weights_ladenWeight": 100, + "techRecord_bodyMake": "NOT KNOWN", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "025111", + "techRecord_brakes_brakeCode": "025111", + "techRecord_brakes_brakeCodeOriginal": "111", + "techRecord_brakes_dataTrBrakeOne": "2 AXLE NO SPLIT", + "techRecord_brakes_dataTrBrakeThree": "AXLE 1", + "techRecord_brakes_dataTrBrakeTwo": "PARKING BRAKE ON AXLE 1", + "techRecord_brakes_dtpNumber": "00000", + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "electric", + "techRecord_chassisMake": "NOT KNOWN", + "techRecord_chassisModel": "NOT KNOWN", + "techRecord_coifCertifierName": "123456", + "techRecord_coifDate": "2012-12-12", + "techRecord_coifSerialNumber": "123456", + "techRecord_conversionRefNo": "12345", + "techRecord_createdAt": "2024-03-21T14:23:48.580Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": "Redacted", + "techRecord_dda_certificateIssued": true, + "techRecord_dda_ddaNotes": "dda note", + "techRecord_dda_ddaSchedules": "dda schedule", + "techRecord_dda_minEmergencyExits": 0, + "techRecord_dda_outswing": "outswing", + "techRecord_dda_seatbeltsFitted": 2, + "techRecord_dda_wheelchairCapacity": 12, + "techRecord_dda_wheelchairFittings": "wheelchair fittings", + "techRecord_dda_wheelchairLiftInformation": "info", + "techRecord_dda_wheelchairLiftPresent": false, + "techRecord_dda_wheelchairRampInformation": "info", + "techRecord_dda_wheelchairRampPresent": false, + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_height": 100, + "techRecord_dimensions_length": 100, + "techRecord_dimensions_width": 100, + "techRecord_dispensations": "dispensation", + "techRecord_emissionsLimit": 12, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleToRearAxle": 100, + "techRecord_fuelPropulsionSystem": "Diesel", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_grossKerbWeight": 100, + "techRecord_grossLadenWeight": 2505, + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainGbWeight": 100, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "12435", + "techRecord_microfilm_microfilmSerialNumber": "1234", + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "123456", + "techRecord_numberOfSeatbelts": "12", + "techRecord_reasonForCreation": "rfc", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_remarks": "note", + "techRecord_seatbeltInstallationApprovalDate": "2012-12-12", + "techRecord_seatsLowerDeck": 12, + "techRecord_seatsUpperDeck": 12, + "techRecord_speedLimiterMrk": true, + "techRecord_speedRestriction": 99, + "techRecord_standingCapacity": 12, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 100, + "techRecord_unladenWeight": 100, + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv", + "vin": "PSVTST3" + }, + { + "systemNumber": "10000662", + "createdTimestamp": "2024-03-21T14:23:48.580Z", + "partialVin": "SVTST4", + "primaryVrm": "PSVTST4", + "techRecord_alterationMarker": true, + "techRecord_applicationId": "", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123456", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_0_weights_kerbWeight": 100, + "techRecord_axles_0_weights_ladenWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 101, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "8", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 100, + "techRecord_axles_1_tyres_tyreSize": "175-16C", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_1_weights_kerbWeight": 100, + "techRecord_axles_1_weights_ladenWeight": 100, + "techRecord_bodyMake": "NOT KNOWN", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "025111", + "techRecord_brakes_brakeCode": "025111", + "techRecord_brakes_brakeCodeOriginal": "111", + "techRecord_brakes_dataTrBrakeOne": "2 AXLE NO SPLIT", + "techRecord_brakes_dataTrBrakeThree": "AXLE 1", + "techRecord_brakes_dataTrBrakeTwo": "PARKING BRAKE ON AXLE 1", + "techRecord_brakes_dtpNumber": "00000", + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "electric", + "techRecord_chassisMake": "NOT KNOWN", + "techRecord_chassisModel": "NOT KNOWN", + "techRecord_coifCertifierName": "123456", + "techRecord_coifDate": "2012-12-12", + "techRecord_coifSerialNumber": "123456", + "techRecord_conversionRefNo": "12345", + "techRecord_createdAt": "2024-03-21T14:23:48.580Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": "Redacted", + "techRecord_dda_certificateIssued": true, + "techRecord_dda_ddaNotes": "dda note", + "techRecord_dda_ddaSchedules": "dda schedule", + "techRecord_dda_minEmergencyExits": 0, + "techRecord_dda_outswing": "outswing", + "techRecord_dda_seatbeltsFitted": 2, + "techRecord_dda_wheelchairCapacity": 12, + "techRecord_dda_wheelchairFittings": "wheelchair fittings", + "techRecord_dda_wheelchairLiftInformation": "info", + "techRecord_dda_wheelchairLiftPresent": false, + "techRecord_dda_wheelchairRampInformation": "info", + "techRecord_dda_wheelchairRampPresent": false, + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_height": 100, + "techRecord_dimensions_length": 100, + "techRecord_dimensions_width": 100, + "techRecord_dispensations": "dispensation", + "techRecord_emissionsLimit": 12, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleToRearAxle": 100, + "techRecord_fuelPropulsionSystem": "Diesel", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_grossKerbWeight": 100, + "techRecord_grossLadenWeight": 2505, + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainGbWeight": 100, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "12435", + "techRecord_microfilm_microfilmSerialNumber": "1234", + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "123456", + "techRecord_numberOfSeatbelts": "12", + "techRecord_reasonForCreation": "rfc", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_remarks": "note", + "techRecord_seatbeltInstallationApprovalDate": "2012-12-12", + "techRecord_seatsLowerDeck": 12, + "techRecord_seatsUpperDeck": 12, + "techRecord_speedLimiterMrk": true, + "techRecord_speedRestriction": 99, + "techRecord_standingCapacity": 12, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 100, + "techRecord_unladenWeight": 100, + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv", + "vin": "PSVTST4" + }, + { + "systemNumber": "10000361", + "createdTimestamp": "2024-03-22T09:26:56.754Z", + "partialVin": "SVTST5", + "primaryVrm": "PSVTST5", + "techRecord_alterationMarker": true, + "techRecord_applicationId": "", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1235467", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_0_weights_kerbWeight": 100, + "techRecord_axles_0_weights_ladenWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 99, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "8", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 100, + "techRecord_axles_1_tyres_tyreSize": "175-16C", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_1_weights_kerbWeight": 100, + "techRecord_axles_1_weights_ladenWeight": 100, + "techRecord_bodyMake": "NOT KNOWN", + "techRecord_bodyModel": "model", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "025111", + "techRecord_brakes_brakeCode": "025111", + "techRecord_brakes_brakeCodeOriginal": "111", + "techRecord_brakes_dataTrBrakeOne": "2 AXLE NO SPLIT", + "techRecord_brakes_dataTrBrakeThree": "AXLE 1", + "techRecord_brakes_dataTrBrakeTwo": "PARKING BRAKE ON AXLE 1", + "techRecord_brakes_dtpNumber": "00000", + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "electric", + "techRecord_chassisMake": "NOT KNOWN", + "techRecord_chassisModel": "NOT KNOWN", + "techRecord_coifCertifierName": "123456", + "techRecord_coifDate": "2012-12-12", + "techRecord_coifSerialNumber": "123456", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2024-03-22T09:26:56.754Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": "Redacted", + "techRecord_dda_certificateIssued": false, + "techRecord_dda_ddaNotes": "N/A", + "techRecord_dda_ddaSchedules": "N/A", + "techRecord_dda_minEmergencyExits": 0, + "techRecord_dda_outswing": "N/A", + "techRecord_dda_seatbeltsFitted": 0, + "techRecord_dda_wheelchairCapacity": 0, + "techRecord_dda_wheelchairFittings": "N/A", + "techRecord_dda_wheelchairLiftInformation": "N/A", + "techRecord_dda_wheelchairLiftPresent": false, + "techRecord_dda_wheelchairRampInformation": "N/A", + "techRecord_dda_wheelchairRampPresent": false, + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_height": 100, + "techRecord_dimensions_length": 100, + "techRecord_dimensions_width": 100, + "techRecord_dispensations": "dispensation", + "techRecord_emissionsLimit": 12, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleToRearAxle": 100, + "techRecord_fuelPropulsionSystem": "Diesel", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_grossKerbWeight": 100, + "techRecord_grossLadenWeight": 2505, + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainGbWeight": 100, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "12346", + "techRecord_microfilm_microfilmSerialNumber": "1423", + "techRecord_modelLiteral": "literal", + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "1257", + "techRecord_numberOfSeatbelts": "12", + "techRecord_reasonForCreation": "rfc", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_remarks": "note", + "techRecord_seatbeltInstallationApprovalDate": "2012-12-12", + "techRecord_seatsLowerDeck": 12, + "techRecord_seatsUpperDeck": 12, + "techRecord_speedLimiterMrk": true, + "techRecord_speedRestriction": 99, + "techRecord_standingCapacity": 12, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 100, + "techRecord_unladenWeight": 100, + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv", + "vin": "PSVTST5" + }, + { + "systemNumber": "10000362", + "createdTimestamp": "2024-03-22T09:26:56.754Z", + "partialVin": "SVTST6", + "primaryVrm": "PSVTST6", + "techRecord_alterationMarker": true, + "techRecord_applicationId": "", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1235467", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_0_weights_kerbWeight": 100, + "techRecord_axles_0_weights_ladenWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 99, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "8", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 100, + "techRecord_axles_1_tyres_tyreSize": "175-16C", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_1_weights_kerbWeight": 100, + "techRecord_axles_1_weights_ladenWeight": 100, + "techRecord_bodyMake": "NOT KNOWN", + "techRecord_bodyModel": "model", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "025111", + "techRecord_brakes_brakeCode": "025111", + "techRecord_brakes_brakeCodeOriginal": "111", + "techRecord_brakes_dataTrBrakeOne": "2 AXLE NO SPLIT", + "techRecord_brakes_dataTrBrakeThree": "AXLE 1", + "techRecord_brakes_dataTrBrakeTwo": "PARKING BRAKE ON AXLE 1", + "techRecord_brakes_dtpNumber": "00000", + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "electric", + "techRecord_chassisMake": "NOT KNOWN", + "techRecord_chassisModel": "NOT KNOWN", + "techRecord_coifCertifierName": "123456", + "techRecord_coifDate": "2012-12-12", + "techRecord_coifSerialNumber": "123456", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2024-03-22T09:26:56.754Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": "Redacted", + "techRecord_dda_certificateIssued": false, + "techRecord_dda_ddaNotes": "N/A", + "techRecord_dda_ddaSchedules": "N/A", + "techRecord_dda_minEmergencyExits": 0, + "techRecord_dda_outswing": "N/A", + "techRecord_dda_seatbeltsFitted": 0, + "techRecord_dda_wheelchairCapacity": 0, + "techRecord_dda_wheelchairFittings": "N/A", + "techRecord_dda_wheelchairLiftInformation": "N/A", + "techRecord_dda_wheelchairLiftPresent": false, + "techRecord_dda_wheelchairRampInformation": "N/A", + "techRecord_dda_wheelchairRampPresent": false, + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_height": 100, + "techRecord_dimensions_length": 100, + "techRecord_dimensions_width": 100, + "techRecord_dispensations": "dispensation", + "techRecord_emissionsLimit": 12, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleToRearAxle": 100, + "techRecord_fuelPropulsionSystem": "Diesel", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_grossKerbWeight": 100, + "techRecord_grossLadenWeight": 2505, + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainGbWeight": 100, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "12346", + "techRecord_microfilm_microfilmSerialNumber": "1423", + "techRecord_modelLiteral": "literal", + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "1257", + "techRecord_numberOfSeatbelts": "12", + "techRecord_reasonForCreation": "rfc", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_remarks": "note", + "techRecord_seatbeltInstallationApprovalDate": "2012-12-12", + "techRecord_seatsLowerDeck": 12, + "techRecord_seatsUpperDeck": 12, + "techRecord_speedLimiterMrk": true, + "techRecord_speedRestriction": 99, + "techRecord_standingCapacity": 12, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 100, + "techRecord_unladenWeight": 100, + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv", + "vin": "PSVTST6" + }, + { + "systemNumber": "VTA01QA", + "createdTimestamp": "2024-03-25T17:14:25.346Z", + "vin": "AUTOQAPSV00000001", + "partialVin": "000001", + "primaryVrm": "QA01PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA01QA", + "createdTimestamp": "2024-03-26T17:14:16.346Z", + "vin": "AUTOQAPSV00000001", + "partialVin": "000001", + "primaryVrm": "QA01PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": null, + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA02QA", + "createdTimestamp": "2024-03-25T17:14:26.346Z", + "vin": "AUTOQAPSV00000002", + "partialVin": "000002", + "primaryVrm": "QA02PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632, 01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12: 24: 38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21: 43: 03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA02QA", + "createdTimestamp": "2024-03-26T17:14:17.346Z", + "vin": "AUTOQAPSV00000002", + "partialVin": "000002", + "primaryVrm": "QA02PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632, 01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21: 43: 03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": null, + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA03QA", + "createdTimestamp": "2024-03-25T17:14:27.346Z", + "vin": "AUTOQAPSV00000003", + "partialVin": "000003", + "primaryVrm": "QA03PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA03QA", + "createdTimestamp": "2024-03-26T17:14:18.346Z", + "vin": "AUTOQAPSV00000003", + "partialVin": "000003", + "primaryVrm": "QA03PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": null, + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA04QA", + "createdTimestamp": "2024-03-25T17:14:28.346Z", + "vin": "AUTOQAPSV00000004", + "partialVin": "000004", + "primaryVrm": "QA04PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA04QA", + "createdTimestamp": "2024-03-26T17:14:19.346Z", + "vin": "AUTOQAPSV00000004", + "partialVin": "000004", + "primaryVrm": "QA04PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": null, + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA05QA", + "createdTimestamp": "2024-03-25T17:14:29.346Z", + "vin": "AUTOQAPSV00000005", + "partialVin": "000005", + "primaryVrm": "QA05PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA05QA", + "createdTimestamp": "2024-03-26T17:14:20.346Z", + "vin": "AUTOQAPSV00000005", + "partialVin": "000005", + "primaryVrm": "QA05PSV", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": "m2", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000001", + "createdTimestamp": "2024-03-25T17:14:37.348Z", + "vin": "AUTOQAPSV00000006", + "partialVin": "000006", + "primaryVrm": "QA06PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 152, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5000, + "techRecord_axles_0_weights_ladenWeight": 6500, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 148, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 11500, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 7000, + "techRecord_axles_1_weights_ladenWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 152, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_speedCategorySymbol": null, + "techRecord_axles_2_tyres_tyreCode": 456, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 7100, + "techRecord_axles_2_weights_gbWeight": 7100, + "techRecord_axles_2_weights_kerbWeight": 5000, + "techRecord_axles_2_weights_ladenWeight": 6500, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": null, + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "00B06", + "techRecord_brakes_brakeCode": "00B06", + "techRecord_brakes_brakeCodeOriginal": "B06", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "3 AXLE SPLIT (AXLE 1 / AXLES 2 + 3 )", + "techRecord_brakes_dataTrBrakeThree": "AXLES 2 + 3", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "011405", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "SCANIA", + "techRecord_chassisModel": "K 410 EB6x2*4LI", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T09:52:11.641Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m3", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 25700, + "techRecord_grossGbWeight": 25700, + "techRecord_grossKerbWeight": 17000, + "techRecord_grossLadenWeight": 21000, + "techRecord_historicPrimaryVrm": "QA06PSV", + "techRecord_lastUpdatedAt": "2023-04-21T11:17:17.394Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 3, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-20", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 49, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000001", + "createdTimestamp": "2024-03-26T17:14:11.348Z", + "vin": "AUTOQAPSV00000006", + "partialVin": "000006", + "primaryVrm": "QA06PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 152, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5000, + "techRecord_axles_0_weights_ladenWeight": 6500, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 148, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 11500, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 7000, + "techRecord_axles_1_weights_ladenWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 152, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_speedCategorySymbol": null, + "techRecord_axles_2_tyres_tyreCode": 456, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 7100, + "techRecord_axles_2_weights_gbWeight": 7100, + "techRecord_axles_2_weights_kerbWeight": 5000, + "techRecord_axles_2_weights_ladenWeight": 6500, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": null, + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "00B06", + "techRecord_brakes_brakeCode": "00B06", + "techRecord_brakes_brakeCodeOriginal": "B06", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "3 AXLE SPLIT (AXLE 1 / AXLES 2 + 3 )", + "techRecord_brakes_dataTrBrakeThree": "AXLES 2 + 3", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "011405", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "SCANIA", + "techRecord_chassisModel": "K 410 EB6x2*4LI", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T11:17:17.394Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m3", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 25700, + "techRecord_grossGbWeight": 25700, + "techRecord_grossKerbWeight": 17000, + "techRecord_grossLadenWeight": 21000, + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 3, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "QA Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-20", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 49, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000002", + "createdTimestamp": "2024-03-25T17:14:10.349Z", + "vin": "AUTOQAPSV00000007", + "partialVin": "000007", + "primaryVrm": "QA07PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 156, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 7500, + "techRecord_axles_0_weights_gbWeight": 7500, + "techRecord_axles_0_weights_kerbWeight": 5000, + "techRecord_axles_0_weights_ladenWeight": 6500, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 150, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 12000, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 7000, + "techRecord_axles_1_weights_ladenWeight": 8500, + "techRecord_bodyMake": "IRIZAR", + "techRecord_bodyModel": null, + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "00202", + "techRecord_brakes_brakeCode": "00202", + "techRecord_brakes_brakeCodeOriginal": "202", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", + "techRecord_brakes_dataTrBrakeThree": "AXLE 2", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "011300", + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "IRIZAR", + "techRecord_chassisModel": "I8 14.98", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T11:46:17.980Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m3", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 19500, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 12000, + "techRecord_grossLadenWeight": 15000, + "techRecord_historicPrimaryVrm": "QA07PSV", + "techRecord_lastUpdatedAt": "2023-04-21T11:47:03.500Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-01", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 51, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000002", + "createdTimestamp": "2024-03-26T17:14:10.349Z", + "vin": "AUTOQAPSV00000007", + "partialVin": "000007", + "primaryVrm": "QA07PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 156, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 7500, + "techRecord_axles_0_weights_gbWeight": 7500, + "techRecord_axles_0_weights_kerbWeight": 5000, + "techRecord_axles_0_weights_ladenWeight": 6500, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 150, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 12000, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 7000, + "techRecord_axles_1_weights_ladenWeight": 8500, + "techRecord_bodyMake": "IRIZAR", + "techRecord_bodyModel": null, + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "00202", + "techRecord_brakes_brakeCode": "00202", + "techRecord_brakes_brakeCodeOriginal": "202", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", + "techRecord_brakes_dataTrBrakeThree": "AXLE 2", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "011300", + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "IRIZAR", + "techRecord_chassisModel": "I8 14.98", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T11:47:03.500Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m3", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 19500, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 12000, + "techRecord_grossLadenWeight": 15000, + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA QA Automation Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-01", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 51, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000003", + "createdTimestamp": "2024-03-25T17:14:11.349Z", + "vin": "AUTOQAPSV00000008", + "partialVin": "000008", + "primaryVrm": "QA08PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 112, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 816, + "techRecord_axles_0_tyres_tyreSize": "225-15", + "techRecord_axles_0_weights_designWeight": 1750, + "techRecord_axles_0_weights_gbWeight": 1750, + "techRecord_axles_0_weights_kerbWeight": 1100, + "techRecord_axles_0_weights_ladenWeight": 1300, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 110, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 816, + "techRecord_axles_1_tyres_tyreSize": "225-15", + "techRecord_axles_1_weights_designWeight": 2500, + "techRecord_axles_1_weights_gbWeight": 2500, + "techRecord_axles_1_weights_kerbWeight": 2000, + "techRecord_axles_1_weights_ladenWeight": 2300, + "techRecord_bodyMake": "TBC CONVERSION", + "techRecord_bodyModel": null, + "techRecord_bodyType_code": "m", + "techRecord_bodyType_description": "mini bus", + "techRecord_brakeCode": "00202", + "techRecord_brakes_brakeCode": "00202", + "techRecord_brakes_brakeCodeOriginal": "202", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", + "techRecord_brakes_dataTrBrakeThree": "AXLE 2", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "011028", + "techRecord_brakes_retarderBrakeOne": "none", + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "MERCEDES", + "techRecord_chassisModel": "516D", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T12:34:34.722Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m2", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 4250, + "techRecord_grossGbWeight": 4250, + "techRecord_grossKerbWeight": 3100, + "techRecord_grossLadenWeight": 3600, + "techRecord_historicPrimaryVrm": "QA08PSV", + "techRecord_lastUpdatedAt": "2023-04-21T12:35:13.721Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-20", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 15, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000003", + "createdTimestamp": "2024-03-26T17:14:11.349Z", + "vin": "AUTOQAPSV00000008", + "partialVin": "000008", + "primaryVrm": "QA08PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 112, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 816, + "techRecord_axles_0_tyres_tyreSize": "225-15", + "techRecord_axles_0_weights_designWeight": 1750, + "techRecord_axles_0_weights_gbWeight": 1750, + "techRecord_axles_0_weights_kerbWeight": 1100, + "techRecord_axles_0_weights_ladenWeight": 1300, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 110, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 816, + "techRecord_axles_1_tyres_tyreSize": "225-15", + "techRecord_axles_1_weights_designWeight": 2500, + "techRecord_axles_1_weights_gbWeight": 2500, + "techRecord_axles_1_weights_kerbWeight": 2000, + "techRecord_axles_1_weights_ladenWeight": 2300, + "techRecord_bodyMake": "TBC CONVERSION", + "techRecord_bodyModel": null, + "techRecord_bodyType_code": "m", + "techRecord_bodyType_description": "mini bus", + "techRecord_brakeCode": "00202", + "techRecord_brakes_brakeCode": "00202", + "techRecord_brakes_brakeCodeOriginal": "202", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", + "techRecord_brakes_dataTrBrakeThree": "AXLE 2", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "011028", + "techRecord_brakes_retarderBrakeOne": "none", + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "MERCEDES", + "techRecord_chassisModel": "516D", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T12:35:13.721Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m2", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 4250, + "techRecord_grossGbWeight": 4250, + "techRecord_grossKerbWeight": 3100, + "techRecord_grossLadenWeight": 3600, + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA QA Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-20", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 15, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000004", + "createdTimestamp": "2024-03-25T17:14:12.349Z", + "vin": "AUTOQAPSV00000009", + "partialVin": "000009", + "primaryVrm": "QA09PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 110, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 109, + "techRecord_axles_0_tyres_tyreSize": "205-16C", + "techRecord_axles_0_weights_designWeight": 1850, + "techRecord_axles_0_weights_gbWeight": 1850, + "techRecord_axles_0_weights_kerbWeight": 1200, + "techRecord_axles_0_weights_ladenWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 110, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 109, + "techRecord_axles_1_tyres_tyreSize": "205-16C", + "techRecord_axles_1_weights_designWeight": 2000, + "techRecord_axles_1_weights_gbWeight": 2000, + "techRecord_axles_1_weights_kerbWeight": 1700, + "techRecord_axles_1_weights_ladenWeight": null, + "techRecord_bodyMake": "STANFORD COACHWORKS", + "techRecord_bodyModel": null, + "techRecord_bodyType_code": "m", + "techRecord_bodyType_description": "mini bus", + "techRecord_brakeCode": "00202", + "techRecord_brakes_brakeCode": "00202", + "techRecord_brakes_brakeCodeOriginal": "202", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", + "techRecord_brakes_dataTrBrakeThree": "AXLE 2", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "010012", + "techRecord_brakes_retarderBrakeOne": "none", + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "VOLKSWAGEN", + "techRecord_chassisModel": "CRAFTER", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T14:04:01.129Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m2", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 3850, + "techRecord_grossGbWeight": 3850, + "techRecord_grossKerbWeight": 2900, + "techRecord_grossLadenWeight": 3680, + "techRecord_historicPrimaryVrm": "QA09PSV", + "techRecord_lastUpdatedAt": "2023-04-21T14:04:23.569Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-03-01", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 11, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000004", + "createdTimestamp": "2024-03-26T17:14:12.349Z", + "vin": "AUTOQAPSV00000009", + "partialVin": "000009", + "primaryVrm": "QA09PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 110, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 109, + "techRecord_axles_0_tyres_tyreSize": "205-16C", + "techRecord_axles_0_weights_designWeight": 1850, + "techRecord_axles_0_weights_gbWeight": 1850, + "techRecord_axles_0_weights_kerbWeight": 1200, + "techRecord_axles_0_weights_ladenWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 110, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 109, + "techRecord_axles_1_tyres_tyreSize": "205-16C", + "techRecord_axles_1_weights_designWeight": 2000, + "techRecord_axles_1_weights_gbWeight": 2000, + "techRecord_axles_1_weights_kerbWeight": 1700, + "techRecord_axles_1_weights_ladenWeight": null, + "techRecord_bodyMake": "STANFORD COACHWORKS", + "techRecord_bodyModel": null, + "techRecord_bodyType_code": "m", + "techRecord_bodyType_description": "mini bus", + "techRecord_brakeCode": "00202", + "techRecord_brakes_brakeCode": "00202", + "techRecord_brakes_brakeCodeOriginal": "202", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", + "techRecord_brakes_dataTrBrakeThree": "AXLE 2", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "010012", + "techRecord_brakes_retarderBrakeOne": "none", + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "VOLKSWAGEN", + "techRecord_chassisModel": "CRAFTER", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T14:04:23.569Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m2", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 3850, + "techRecord_grossGbWeight": 3850, + "techRecord_grossKerbWeight": 2900, + "techRecord_grossLadenWeight": 3680, + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA QA Automation Seed Data\n", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-03-01", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 11, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000005", + "createdTimestamp": "2024-03-25T17:14:13.349Z", + "vin": "AUTOQAPSV00000010", + "partialVin": "000010", + "primaryVrm": "QA10PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 152, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7500, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5000, + "techRecord_axles_0_weights_ladenWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 148, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 13000, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8100, + "techRecord_axles_1_weights_ladenWeight": null, + "techRecord_bodyMake": "VAN HOOL", + "techRecord_bodyModel": "Alize II", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "00202", + "techRecord_brakes_brakeCode": "00202", + "techRecord_brakes_brakeCodeOriginal": "202", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", + "techRecord_brakes_dataTrBrakeThree": "AXLE 2", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "008961", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "SCANIA", + "techRecord_chassisModel": "L94", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T14:34:12.662Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m3", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 19500, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13100, + "techRecord_grossLadenWeight": 17225, + "techRecord_historicPrimaryVrm": "QA10PSV", + "techRecord_lastUpdatedAt": "2023-04-21T14:34:34.980Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-02-01", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 53, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "90000005", + "createdTimestamp": "2024-03-26T17:14:13.349Z", + "vin": "AUTOQAPSV00000010", + "partialVin": "000010", + "primaryVrm": "QA10PSV", + "techRecord_alterationMarker": false, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 152, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7500, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5000, + "techRecord_axles_0_weights_ladenWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 148, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 13000, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8100, + "techRecord_axles_1_weights_ladenWeight": null, + "techRecord_bodyMake": "VAN HOOL", + "techRecord_bodyModel": "Alize II", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "00202", + "techRecord_brakes_brakeCode": "00202", + "techRecord_brakes_brakeCodeOriginal": "202", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", + "techRecord_brakes_dataTrBrakeThree": "AXLE 2", + "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", + "techRecord_brakes_dtpNumber": "008961", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "SCANIA", + "techRecord_chassisModel": "L94", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T14:34:34.980Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_dda": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "m3", + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 19500, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13100, + "techRecord_grossLadenWeight": 17225, + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "VTA QA Automation Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-02-01", + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 53, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "l", + "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA06QA", + "createdTimestamp": "2024-03-25T17:14:10.346Z", + "vin": "AUTOQAHGV00000001", + "partialVin": "957486", + "primaryVrm": "QA01HGV", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA07QA", + "createdTimestamp": "2024-03-25T17:14:10.347Z", + "vin": "AUTOQAHGV00000002", + "partialVin": "957486", + "primaryVrm": "QA02HGV", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA08QA", + "createdTimestamp": "2024-03-25T17:14:11.347Z", + "vin": "AUTOQAHGV00000003", + "partialVin": "957486", + "primaryVrm": "QA03HGV", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA09QA", + "createdTimestamp": "2024-03-25T17:14:13.347Z", + "vin": "AUTOQAHGV00000004", + "partialVin": "957486", + "primaryVrm": "QA04HGV", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA10QA", + "createdTimestamp": "2024-03-25T17:14:14.347Z", + "vin": "AUTOQAHGV00000005", + "partialVin": "957486", + "primaryVrm": "QA05HGV", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000006", + "createdTimestamp": "2024-03-25T17:14:14.349Z", + "vin": "AUTOQAHGV00000006", + "partialVin": "000006", + "primaryVrm": "QA06HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 109, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 780, + "techRecord_axles_0_tyres_tyreSize": "215/70-15", + "techRecord_axles_0_weights_designWeight": 1850, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 1850, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 109, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 780, + "techRecord_axles_1_tyres_tyreSize": "215/70-15", + "techRecord_axles_1_weights_designWeight": 2000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 2000, + "techRecord_bodyType_code": "i", + "techRecord_bodyType_description": "livestock carrier", + "techRecord_brakes_dtpNumber": "10482", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T14:52:59.747Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n2", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3850, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 3850, + "techRecord_historicPrimaryVrm": "QA06HGV", + "techRecord_lastUpdatedAt": "2023-04-21T14:53:38.340Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_make": "PEUGEOT", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "Boxer", + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-01", + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 3850, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": 3850, + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000006", + "createdTimestamp": "2024-03-26T17:14:14.349Z", + "vin": "AUTOQAHGV00000006", + "partialVin": "000006", + "primaryVrm": "QA06HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 109, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 780, + "techRecord_axles_0_tyres_tyreSize": "215/70-15", + "techRecord_axles_0_weights_designWeight": 1850, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 1850, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 109, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 780, + "techRecord_axles_1_tyres_tyreSize": "215/70-15", + "techRecord_axles_1_weights_designWeight": 2000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 2000, + "techRecord_bodyType_code": "i", + "techRecord_bodyType_description": "livestock carrier", + "techRecord_brakes_dtpNumber": "10482", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T14:53:38.340Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n2", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3850, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 3850, + "techRecord_make": "PEUGEOT", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "Boxer", + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA QA Automation Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-01", + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 3850, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": 3850, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000007", + "createdTimestamp": "2024-03-25T17:14:15.349Z", + "vin": "AUTOQAHGV00000007", + "partialVin": "000007", + "primaryVrm": "QA07HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 152, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 148, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "09876", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T15:37:18.175Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 19000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 18000, + "techRecord_historicPrimaryVrm": "QA07HGV", + "techRecord_lastUpdatedAt": "2023-04-21T15:37:46.133Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_make": "MAN", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "TGS", + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-03-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000007", + "createdTimestamp": "2024-03-26T17:14:15.349Z", + "vin": "AUTOQAHGV00000007", + "partialVin": "000007", + "primaryVrm": "QA07HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 152, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 148, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "09876", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T15:37:46.133Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 19000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 18000, + "techRecord_make": "MAN", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "TGS", + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA QA Automation Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-03-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000008", + "createdTimestamp": "2024-03-25T17:14:16.349Z", + "vin": "AUTOQAHGV00000008", + "partialVin": "000008", + "primaryVrm": "QA08HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 156, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 8000, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 150, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 13000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_bodyType_code": "t", + "techRecord_bodyType_description": "tipper", + "techRecord_brakes_dtpNumber": "10293", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T15:14:19.219Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 20000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 18000, + "techRecord_historicPrimaryVrm": "QA08HGV", + "techRecord_lastUpdatedAt": "2023-04-21T15:14:33.301Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_make": "SCANIA", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "R410", + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000008", + "createdTimestamp": "2024-03-26T17:14:16.349Z", + "vin": "AUTOQAHGV00000008", + "partialVin": "000008", + "primaryVrm": "QA08HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 156, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 8000, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 150, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 13000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_bodyType_code": "t", + "techRecord_bodyType_description": "tipper", + "techRecord_brakes_dtpNumber": "10293", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T15:14:33.301Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 20000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 18000, + "techRecord_make": "SCANIA", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "R410", + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA QA Automation Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-04-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000009", + "createdTimestamp": "2024-03-25T17:14:17.349Z", + "vin": "AUTOQAHGV00000009", + "partialVin": "000009", + "primaryVrm": "QA09HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 156, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 7500, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 7500, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 150, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 12000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 156, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_tyreCode": 428, + "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_2_weights_designWeight": 7100, + "techRecord_axles_2_weights_eecWeight": null, + "techRecord_axles_2_weights_gbWeight": 7500, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "10234", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T15:22:27.522Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 27000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 26000, + "techRecord_historicPrimaryVrm": "QA09HGV", + "techRecord_lastUpdatedAt": "2023-04-21T15:22:55.800Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_make": "MERCEDES", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "Actros 6X2", + "techRecord_noOfAxles": 3, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-01-10", + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000009", + "createdTimestamp": "2024-03-26T17:14:17.349Z", + "vin": "AUTOQAHGV00000009", + "partialVin": "000009", + "primaryVrm": "QA09HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 156, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 7500, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 7500, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 150, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 12000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 156, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_tyreCode": 428, + "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_2_weights_designWeight": 7100, + "techRecord_axles_2_weights_eecWeight": null, + "techRecord_axles_2_weights_gbWeight": 7500, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "10234", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T15:22:55.800Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 27000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 26000, + "techRecord_make": "MERCEDES", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "Actros 6X2", + "techRecord_noOfAxles": 3, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA QA Automation Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-01-10", + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000010", + "createdTimestamp": "2024-03-25T17:14:18.349Z", + "vin": "AUTOQAHGV00000010", + "partialVin": "000010", + "primaryVrm": "QA10HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 152, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 152, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 7100, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 7100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 148, + "techRecord_axles_2_tyres_fitmentCode": "double", + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_tyreCode": 456, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 10500, + "techRecord_axles_2_weights_eecWeight": null, + "techRecord_axles_2_weights_gbWeight": 9500, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 148, + "techRecord_axles_3_tyres_fitmentCode": "double", + "techRecord_axles_3_tyres_plyRating": null, + "techRecord_axles_3_tyres_tyreCode": 456, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 10500, + "techRecord_axles_3_weights_eecWeight": null, + "techRecord_axles_3_weights_gbWeight": 9500, + "techRecord_bodyType_code": "t", + "techRecord_bodyType_description": "tipper", + "techRecord_brakes_dtpNumber": "09876", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T15:29:16.823Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": null, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 34000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 32000, + "techRecord_historicPrimaryVrm": "QA10HGV", + "techRecord_lastUpdatedAt": "2023-04-21T15:29:47.686Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_make": "VOLVO", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "FH-540 8X4", + "techRecord_noOfAxles": 4, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-03-20", + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": "2R", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000010", + "createdTimestamp": "2024-03-26T17:14:18.349Z", + "vin": "AUTOQAHGV00000010", + "partialVin": "000010", + "primaryVrm": "QA10HGV", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 152, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 152, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 7100, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 7100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 148, + "techRecord_axles_2_tyres_fitmentCode": "double", + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_tyreCode": 456, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 10500, + "techRecord_axles_2_weights_eecWeight": null, + "techRecord_axles_2_weights_gbWeight": 9500, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 148, + "techRecord_axles_3_tyres_fitmentCode": "double", + "techRecord_axles_3_tyres_plyRating": null, + "techRecord_axles_3_tyres_tyreCode": 456, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 10500, + "techRecord_axles_3_weights_eecWeight": null, + "techRecord_axles_3_weights_gbWeight": 9500, + "techRecord_bodyType_code": "t", + "techRecord_bodyType_description": "tipper", + "techRecord_brakes_dtpNumber": "09876", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2023-04-21T15:29:47.686Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": null, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": "n3", + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 34000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 32000, + "techRecord_make": "VOLVO", + "techRecord_manufactureYear": 2022, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_microfilm": null, + "techRecord_model": "FH-540 8X4", + "techRecord_noOfAxles": 4, + "techRecord_numberOfWheelsDriven": null, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "VTA QA Automation Seed Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-03-20", + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": "2R", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "90000016", + "createdTimestamp": "2024-03-25T17:14:24.349Z", + "vin": "AUTOQACAR00000001", + "partialVin": "000001", + "primaryVrm": "QA01CAR", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:24:15.931Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "m1", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car" + }, + { + "systemNumber": "90000017", + "createdTimestamp": "2024-03-25T17:14:25.349Z", + "vin": "AUTOQACAR00000002", + "partialVin": "000002", + "primaryVrm": "QA02CAR", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:25:55.047Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "m1", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "t", + "techRecord_vehicleType": "car" + }, + { + "systemNumber": "90000018", + "createdTimestamp": "2024-03-25T17:14:26.349Z", + "vin": "AUTOQACAR00000003", + "partialVin": "000003", + "primaryVrm": "QA03CAR", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:27:07.987Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "m1", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "r", + "techRecord_vehicleType": "car" + }, + { + "systemNumber": "90000019", + "createdTimestamp": "2024-03-25T17:14:27.349Z", + "vin": "AUTOQALGV00000001", + "partialVin": "000001", + "primaryVrm": "QA01LGV", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:28:09.244Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "n1", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "c", + "techRecord_vehicleType": "lgv" + }, + { + "systemNumber": "90000020", + "createdTimestamp": "2024-03-25T17:14:28.349Z", + "vin": "AUTOQALGV00000002", + "partialVin": "000002", + "primaryVrm": "QA02LGV", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:29:32.732Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "n1", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "p", + "techRecord_vehicleType": "lgv" + }, + { + "systemNumber": "90000021", + "createdTimestamp": "2024-03-25T17:14:29.349Z", + "vin": "AUTOQALGV00000003", + "partialVin": "000003", + "primaryVrm": "QA03LGV", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:30:31.092Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "n1", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "r", + "techRecord_vehicleType": "lgv" + }, + { + "systemNumber": "90000022", + "createdTimestamp": "2024-03-25T17:14:30.349Z", + "vin": "AUTOQASTRL0000001", + "partialVin": "000001", + "trailerId": "020003T", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:37:45.288Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "o1", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": "1", + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "r", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "90000023", + "createdTimestamp": "2024-03-25T17:14:31.349Z", + "vin": "AUTOQASTRL0000002", + "partialVin": "000002", + "trailerId": "020004T", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:39:58.116Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "o1", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": "2", + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "drawbar", + "techRecord_vehicleSubclass_0": "r", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "90000024", + "createdTimestamp": "2024-03-25T17:14:32.349Z", + "vin": "AUTOQASTRL0000003", + "partialVin": "000003", + "trailerId": "020005T", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:41:38.522Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "o2", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": "1", + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "r", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "90000025", + "createdTimestamp": "2024-03-25T17:14:33.349Z", + "vin": "AUTOQASTRL0000004", + "partialVin": "000004", + "trailerId": "020006T", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:44:00.760Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "o2", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": "2", + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "drawbar", + "techRecord_vehicleSubclass_0": "r", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "90000026", + "createdTimestamp": "2024-03-25T17:14:34.349Z", + "vin": "AUTOQAMCYCLE00001", + "partialVin": "E00001", + "primaryVrm": "QA01MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:51:05.597Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "l1e-a", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 0, + "techRecord_numberOfWheelsDriven": 3, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "1", + "techRecord_vehicleClass_description": "motorbikes up to 200cc", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle" + }, + { + "systemNumber": "90000027", + "createdTimestamp": "2024-03-25T17:14:35.349Z", + "vin": "AUTOQAMCYCLE00002", + "partialVin": "E00002", + "primaryVrm": "QA02MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:53:23.034Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": "l1e", + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 0, + "techRecord_numberOfWheelsDriven": 2, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "1", + "techRecord_vehicleClass_description": "motorbikes up to 200cc", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle" + }, + { + "systemNumber": "90000028", + "createdTimestamp": "2024-03-25T17:14:36.349Z", + "vin": "AUTOQAMCYCLE00003", + "partialVin": "E00003", + "primaryVrm": "QA03MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:56:50.713Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": null, + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 0, + "techRecord_numberOfWheelsDriven": 2, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "2", + "techRecord_vehicleClass_description": "motorbikes over 200cc or with a sidecar", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle" + }, + { + "systemNumber": "90000029", + "createdTimestamp": "2024-03-25T17:14:12.350Z", + "vin": "AUTOQAMCYCLE00004", + "partialVin": "E00004", + "primaryVrm": "QA04MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:57:50.771Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": null, + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 1, + "techRecord_numberOfWheelsDriven": 3, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "3", + "techRecord_vehicleClass_description": "3 wheelers", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle" + }, + { + "systemNumber": "90000030", + "createdTimestamp": "2024-03-25T17:14:13.350Z", + "vin": "AUTOQAMCYCLE00005", + "partialVin": "E00005", + "primaryVrm": "QA05MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:59:04.868Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": null, + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 1, + "techRecord_numberOfWheelsDriven": 3, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "4", + "techRecord_vehicleClass_description": "MOT class 4", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle" + }, + { + "systemNumber": "90000031", + "createdTimestamp": "2024-03-25T17:14:14.350Z", + "vin": "AUTOQAMCYCLE00006", + "partialVin": "E00006", + "primaryVrm": "QA06MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2023-04-24T10:59:59.685Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_euVehicleCategory": null, + "techRecord_lastUpdatedAt": null, + "techRecord_lastUpdatedById": null, + "techRecord_lastUpdatedByName": null, + "techRecord_manufactureYear": 2022, + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": 4, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "4", + "techRecord_vehicleClass_description": "MOT class 4", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle" + }, + { + "systemNumber": "10000555", + "createdTimestamp": "2024-02-05T08:26:15.659Z", + "partialVin": "GVTST1", + "primaryVrm": "HGVTST1", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-02-05T08:26:15.659Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST1" + }, + { + "systemNumber": "10001555", + "createdTimestamp": "2024-02-05T08:26:15.659Z", + "partialVin": "GVTST2", + "primaryVrm": "HGVTST2", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-02-05T08:26:15.659Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST2" + }, + { + "systemNumber": "10000559", + "createdTimestamp": "2024-02-05T08:51:54.172Z", + "partialVin": "GVTST3", + "primaryVrm": "HGVTST3", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "nobody@somewhere.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07257936528", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123456", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "123546", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2024-02-05T08:51:54.172Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 2600, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 2600, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 19, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "n1", + "techRecord_frontAxleTo5thWheelMax": 2600, + "techRecord_frontAxleTo5thWheelMin": 12000, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, + "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, + "techRecord_fuelPropulsionSystem": "Petrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_lastUpdatedAt": "2024-02-05T14:46:26.973Z", + "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", + "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainDesignWeight": 100, + "techRecord_maxTrainEecWeight": 100, + "techRecord_maxTrainGbWeight": 100, + "techRecord_model": "123456", + "techRecord_noOfAxles": 4, + "techRecord_notes": "Complete record for HGV", + "techRecord_ntaNumber": "123456", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 100, + "techRecord_trainEecWeight": 100, + "techRecord_trainGbWeight": 100, + "techRecord_tyreUseCode": "2R", + "techRecord_updateType": "adrUpdate", + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST3" + }, + { + "systemNumber": "10001559", + "createdTimestamp": "2024-02-05T08:51:54.172Z", + "partialVin": "GVTST4", + "primaryVrm": "HGVTST4", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "nobody@somewhere.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07257936528", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123456", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "123546", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2024-02-05T08:51:54.172Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 2600, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 2600, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 19, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "n1", + "techRecord_frontAxleTo5thWheelMax": 2600, + "techRecord_frontAxleTo5thWheelMin": 12000, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, + "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, + "techRecord_fuelPropulsionSystem": "Petrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_lastUpdatedAt": "2024-02-05T14:46:26.973Z", + "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", + "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainDesignWeight": 100, + "techRecord_maxTrainEecWeight": 100, + "techRecord_maxTrainGbWeight": 100, + "techRecord_model": "123456", + "techRecord_noOfAxles": 4, + "techRecord_notes": "Complete record for HGV", + "techRecord_ntaNumber": "123456", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 100, + "techRecord_trainEecWeight": 100, + "techRecord_trainGbWeight": 100, + "techRecord_tyreUseCode": "2R", + "techRecord_updateType": "adrUpdate", + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST4" + }, + { + "systemNumber": "10000569", + "createdTimestamp": "2024-02-05T10:18:35.977Z", + "partialVin": "GVTST5", + "primaryVrm": "HGVTST5", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "12345678", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1235467", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": 10, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07826836837", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "12345", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "123456", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2024-02-05T10:18:35.977Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 2600, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 2600, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 12, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "n1", + "techRecord_frontAxleTo5thWheelMax": 2600, + "techRecord_frontAxleTo5thWheelMin": 12000, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, + "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, + "techRecord_fuelPropulsionSystem": "Petrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainDesignWeight": 100, + "techRecord_maxTrainEecWeight": 100, + "techRecord_maxTrainGbWeight": 100, + "techRecord_model": "12345", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete HGV Record with ADR Details.", + "techRecord_ntaNumber": "12356", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 100, + "techRecord_trainEecWeight": 100, + "techRecord_trainGbWeight": 100, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST5" + }, + { + "systemNumber": "10000583", + "createdTimestamp": "2024-02-05T11:52:21.884Z", + "partialVin": "GVTST6", + "primaryVrm": "HGVTST6", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "12345", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-02-05T11:52:21.884Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_notes": "Skeleton HGV Semi-Trailer Tank Record with ADR Details", + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST6" + }, + { + "systemNumber": "10000586", + "createdTimestamp": "2024-02-05T12:18:29.778Z", + "partialVin": "GVTST7", + "primaryVrm": "HGVTST7", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Note", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": "1234567", + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": true, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "124356", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1243567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "12356", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "12345467", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": 12, + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123435", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_parkingBrakeMrk": false, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_dtpNumber": "123", + "techRecord_conversionRefNo": "123456", + "techRecord_createdAt": "2024-02-05T12:18:29.778Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 1200, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 2, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "n1", + "techRecord_frontAxleTo5thWheelMax": 12000, + "techRecord_frontAxleTo5thWheelMin": 12000, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMax": 12000, + "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, + "techRecord_fuelPropulsionSystem": "Petrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2012, + "techRecord_maxTrainDesignWeight": 100, + "techRecord_maxTrainEecWeight": 100, + "techRecord_maxTrainGbWeight": 100, + "techRecord_model": "12345", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete HGV Semi-Trailer Battery with ADR Details", + "techRecord_ntaNumber": "123456", + "techRecord_offRoad": true, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 100, + "techRecord_trainEecWeight": 100, + "techRecord_trainGbWeight": 100, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "HGVTST7" + }, + { + "systemNumber": "10000556", + "createdTimestamp": "2024-02-05T08:27:13.558Z", + "partialVin": "GVTST1", + "primaryVrm": "LGVTST1", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T08:27:13.558Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": null, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": null, + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST1" + }, + { + "systemNumber": "10001556", + "createdTimestamp": "2024-02-05T08:27:13.558Z", + "partialVin": "GVTST2", + "primaryVrm": "LGVTST2", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T08:27:13.558Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": null, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": null, + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST2" + }, + { + "systemNumber": "10000560", + "createdTimestamp": "2024-02-05T08:53:17.809Z", + "partialVin": "GVTST3", + "primaryVrm": "LGVTST3", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07486276309", + "techRecord_createdAt": "2024-02-05T08:53:17.809Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Complete LGV Record", + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST3" + }, + { + "systemNumber": "10001560", + "createdTimestamp": "2024-02-05T08:53:17.809Z", + "partialVin": "GVTST4", + "primaryVrm": "LGVTST4", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07486276309", + "techRecord_createdAt": "2024-02-05T08:53:17.809Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Complete LGV Record", + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST4" + }, + { + "systemNumber": "10000573", + "createdTimestamp": "2024-02-05T10:27:21.754Z", + "partialVin": "GVTST5", + "primaryVrm": "LGVTST5", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": 10, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07827638498", + "techRecord_createdAt": "2024-02-05T10:27:21.754Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "A Complete LGV Record with ADR Details.", + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST5" + }, + { + "systemNumber": "10000584", + "createdTimestamp": "2024-02-05T11:56:05.666Z", + "partialVin": "GVTST6", + "primaryVrm": "LGVTST6", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123123", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T11:56:05.666Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": null, + "techRecord_lastUpdatedAt": "2024-02-05T15:09:22.135Z", + "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", + "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", + "techRecord_manufactureYear": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": "Skeleton LGV Semi-Trailer Tank with ADR Details", + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "current", + "techRecord_updateType": "adrUpdate", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST6" + }, + { + "systemNumber": "10000587", + "createdTimestamp": "2024-02-05T12:26:02.064Z", + "partialVin": "GVTST7", + "primaryVrm": "LGVTST7", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Note", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1243567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": 1234567, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-02-05T12:26:02.064Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_euVehicleCategory": "m1", + "techRecord_manufactureYear": 2012, + "techRecord_noOfAxles": 2, + "techRecord_notes": "A Complete LGV Semi-Trailer Battery with ADR Details.", + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2012-12-12", + "techRecord_statusCode": "current", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "LGVTST7" + }, + { + "systemNumber": "10000557", + "createdTimestamp": "2024-02-05T08:31:56.200Z", + "partialVin": "STTRL1", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T08:31:56.200Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST1", + "vin": "TRLTST1" + }, + { + "systemNumber": "10001557", + "createdTimestamp": "2024-02-05T08:31:56.200Z", + "partialVin": "RLTST2", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T08:31:56.200Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 1, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST2", + "vin": "TRLTST2" + }, + { + "systemNumber": "10000564", + "createdTimestamp": "2024-02-05T09:04:17.170Z", + "partialVin": "RLTST3", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07812736748", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123435", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 100, + "techRecord_axles_0_brakes_leverLength": 100, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 100, + "techRecord_axles_1_brakes_leverLength": 100, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 100, + "techRecord_axles_2_brakes_leverLength": 100, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_brakes_brakeActuator": 100, + "techRecord_axles_3_brakes_leverLength": 100, + "techRecord_axles_3_brakes_springBrakeParking": true, + "techRecord_axles_3_parkingBrakeMrk": true, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": false, + "techRecord_brakes_dtpNumber": "123435", + "techRecord_brakes_loadSensingValve": false, + "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, + "techRecord_conversionRefNo": "123456", + "techRecord_couplingCenterToRearAxleMax": 12000, + "techRecord_couplingCenterToRearAxleMin": 12000, + "techRecord_couplingCenterToRearTrlMax": 12000, + "techRecord_couplingCenterToRearTrlMin": 12000, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T09:04:17.170Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 2600, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 12000, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_euVehicleCategory": "m1", + "techRecord_firstUseDate": "2012-12-12", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "31807HM&G", + "techRecord_manufacturerDetails_address1": "Address", + "techRecord_manufacturerDetails_address2": "Address", + "techRecord_manufacturerDetails_address3": "County", + "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", + "techRecord_manufacturerDetails_faxNumber": "07916836746", + "techRecord_manufacturerDetails_manufacturerNotes": "Notes", + "techRecord_manufacturerDetails_name": "Name", + "techRecord_manufacturerDetails_postCode": "PSTCD", + "techRecord_manufacturerDetails_postTown": "Town", + "techRecord_manufacturerDetails_telephoneNumber": "07625836846", + "techRecord_manufactureYear": 2012, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": "124354", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete TRL Record.", + "techRecord_ntaNumber": "123456", + "techRecord_purchaserDetails_address1": "Address", + "techRecord_purchaserDetails_address2": "Address", + "techRecord_purchaserDetails_address3": "County", + "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", + "techRecord_purchaserDetails_faxNumber": "07652873647", + "techRecord_purchaserDetails_name": "Name", + "techRecord_purchaserDetails_postCode": "PSTCD", + "techRecord_purchaserDetails_postTown": "Town", + "techRecord_purchaserDetails_purchaserNotes": "Notes", + "techRecord_purchaserDetails_telephoneNumber": "07827635746", + "techRecord_rearAxleToRearTrl": 2600, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST3", + "vin": "TRLTST3" + }, + { + "systemNumber": "10001564", + "createdTimestamp": "2024-02-05T09:04:17.170Z", + "partialVin": "RLTST4", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07812736748", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123435", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 100, + "techRecord_axles_0_brakes_leverLength": 100, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 100, + "techRecord_axles_1_brakes_leverLength": 100, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 100, + "techRecord_axles_2_brakes_leverLength": 100, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_brakes_brakeActuator": 100, + "techRecord_axles_3_brakes_leverLength": 100, + "techRecord_axles_3_brakes_springBrakeParking": true, + "techRecord_axles_3_parkingBrakeMrk": true, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": false, + "techRecord_brakes_dtpNumber": "123435", + "techRecord_brakes_loadSensingValve": false, + "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, + "techRecord_conversionRefNo": "123456", + "techRecord_couplingCenterToRearAxleMax": 12000, + "techRecord_couplingCenterToRearAxleMin": 12000, + "techRecord_couplingCenterToRearTrlMax": 12000, + "techRecord_couplingCenterToRearTrlMin": 12000, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T09:04:17.170Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 2600, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 12000, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_euVehicleCategory": "m1", + "techRecord_firstUseDate": "2012-12-12", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "31807HM&G", + "techRecord_manufacturerDetails_address1": "Address", + "techRecord_manufacturerDetails_address2": "Address", + "techRecord_manufacturerDetails_address3": "County", + "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", + "techRecord_manufacturerDetails_faxNumber": "07916836746", + "techRecord_manufacturerDetails_manufacturerNotes": "Notes", + "techRecord_manufacturerDetails_name": "Name", + "techRecord_manufacturerDetails_postCode": "PSTCD", + "techRecord_manufacturerDetails_postTown": "Town", + "techRecord_manufacturerDetails_telephoneNumber": "07625836846", + "techRecord_manufactureYear": 2012, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": "124354", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete TRL Record.", + "techRecord_ntaNumber": "123456", + "techRecord_purchaserDetails_address1": "Address", + "techRecord_purchaserDetails_address2": "Address", + "techRecord_purchaserDetails_address3": "County", + "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", + "techRecord_purchaserDetails_faxNumber": "07652873647", + "techRecord_purchaserDetails_name": "Name", + "techRecord_purchaserDetails_postCode": "PSTCD", + "techRecord_purchaserDetails_postTown": "Town", + "techRecord_purchaserDetails_purchaserNotes": "Notes", + "techRecord_purchaserDetails_telephoneNumber": "07827635746", + "techRecord_rearAxleToRearTrl": 2600, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST4", + "vin": "TRLTST4" + }, + { + "systemNumber": "10000575", + "createdTimestamp": "2024-02-05T10:41:18.513Z", + "partialVin": "RLTST5", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", + "techRecord_adrDetails_adrTypeApprovalNo": "1234567", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": 10, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "Address", + "techRecord_applicantDetails_address2": "Address", + "techRecord_applicantDetails_address3": "County", + "techRecord_applicantDetails_emailAddress": "someone@nobody.com", + "techRecord_applicantDetails_name": "Name", + "techRecord_applicantDetails_postCode": "PSTCD", + "techRecord_applicantDetails_postTown": "Town", + "techRecord_applicantDetails_telephoneNumber": "07625938746", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1234567", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 100, + "techRecord_axles_0_brakes_leverLength": 100, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 100, + "techRecord_axles_1_brakes_leverLength": 100, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 100, + "techRecord_axles_2_brakes_leverLength": 100, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_brakes_brakeActuator": 100, + "techRecord_axles_3_brakes_leverLength": 100, + "techRecord_axles_3_brakes_springBrakeParking": true, + "techRecord_axles_3_parkingBrakeMrk": true, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "123456", + "techRecord_brakes_loadSensingValve": true, + "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, + "techRecord_conversionRefNo": "123546", + "techRecord_couplingCenterToRearAxleMax": 12000, + "techRecord_couplingCenterToRearAxleMin": 12000, + "techRecord_couplingCenterToRearTrlMax": 12000, + "techRecord_couplingCenterToRearTrlMin": 12000, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T10:41:18.513Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 2600, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 12000, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_euVehicleCategory": "m1", + "techRecord_firstUseDate": "2012-12-12", + "techRecord_frameDescription": "Channel section", + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_lastUpdatedAt": "2024-02-05T15:32:15.140Z", + "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", + "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", + "techRecord_make": "31807HM&G", + "techRecord_manufacturerDetails_address1": "Address", + "techRecord_manufacturerDetails_address2": "Address", + "techRecord_manufacturerDetails_address3": "County", + "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", + "techRecord_manufacturerDetails_faxNumber": "07825735736", + "techRecord_manufacturerDetails_manufacturerNotes": "Manufacturer Notes", + "techRecord_manufacturerDetails_name": "Name", + "techRecord_manufacturerDetails_postCode": "PSTCD", + "techRecord_manufacturerDetails_postTown": "Town", + "techRecord_manufacturerDetails_telephoneNumber": "07826354726", + "techRecord_manufactureYear": 2012, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": "123456", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete TRL Record with ADR Details.", + "techRecord_ntaNumber": "1234567", + "techRecord_purchaserDetails_address1": "Address", + "techRecord_purchaserDetails_address2": "Address", + "techRecord_purchaserDetails_address3": "County", + "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", + "techRecord_purchaserDetails_faxNumber": "07625384657", + "techRecord_purchaserDetails_name": "Name", + "techRecord_purchaserDetails_postCode": "PSTCD", + "techRecord_purchaserDetails_postTown": "Town", + "techRecord_purchaserDetails_purchaserNotes": "Purchaser Notes", + "techRecord_purchaserDetails_telephoneNumber": "07087625364", + "techRecord_rearAxleToRearTrl": 2600, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": "2R", + "techRecord_updateType": "adrUpdate", + "techRecord_variantNumber": "123456", + "techRecord_variantVersionNumber": "123456", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST5", + "vin": "TRLTST5" + }, + { + "systemNumber": "10000585", + "createdTimestamp": "2024-02-05T12:01:26.149Z", + "partialVin": "RLTST6", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123123", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T12:01:26.149Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": null, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": null, + "techRecord_notes": "A Skeleton TRL Semi-Trailer Tank Record with ADR Details", + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Testing", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "current", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST6", + "vin": "TRLTST6" + }, + { + "systemNumber": "10000588", + "createdTimestamp": "2024-02-05T12:42:03.346Z", + "partialVin": "RLTST7", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", + "techRecord_adrDetails_adrTypeApprovalNo": "123456", + "techRecord_adrDetails_applicantDetails_city": "City", + "techRecord_adrDetails_applicantDetails_name": "Name", + "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", + "techRecord_adrDetails_applicantDetails_street": "Street", + "techRecord_adrDetails_applicantDetails_town": "Town", + "techRecord_adrDetails_batteryListNumber": "1243567", + "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": true, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": true, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "1234567", + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", + "techRecord_adrDetails_weight": 12, + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "123435", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 100, + "techRecord_axles_0_brakes_leverLength": 100, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 101, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "8", + "techRecord_axles_0_tyres_tyreCode": 100, + "techRecord_axles_0_tyres_tyreSize": "175-16C", + "techRecord_axles_0_weights_designWeight": 100, + "techRecord_axles_0_weights_eecWeight": 100, + "techRecord_axles_0_weights_gbWeight": 100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 100, + "techRecord_axles_1_brakes_leverLength": 100, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 627, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "18", + "techRecord_axles_1_tyres_tyreCode": 90, + "techRecord_axles_1_tyres_tyreSize": "825-15", + "techRecord_axles_1_weights_designWeight": 100, + "techRecord_axles_1_weights_eecWeight": 100, + "techRecord_axles_1_weights_gbWeight": 100, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 100, + "techRecord_axles_2_brakes_leverLength": 100, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 607, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "8", + "techRecord_axles_2_tyres_tyreCode": 80, + "techRecord_axles_2_tyres_tyreSize": "700-15C", + "techRecord_axles_2_weights_designWeight": 100, + "techRecord_axles_2_weights_eecWeight": 100, + "techRecord_axles_2_weights_gbWeight": 100, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_brakes_brakeActuator": 100, + "techRecord_axles_3_brakes_leverLength": 100, + "techRecord_axles_3_brakes_springBrakeParking": true, + "techRecord_axles_3_parkingBrakeMrk": true, + "techRecord_axles_3_tyres_dataTrAxles": 599, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "6", + "techRecord_axles_3_tyres_tyreCode": 70, + "techRecord_axles_3_tyres_tyreSize": "590-15C", + "techRecord_axles_3_weights_designWeight": 100, + "techRecord_axles_3_weights_eecWeight": 100, + "techRecord_axles_3_weights_gbWeight": 100, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "124356", + "techRecord_brakes_loadSensingValve": true, + "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, + "techRecord_conversionRefNo": "12343546", + "techRecord_couplingCenterToRearAxleMax": 12000, + "techRecord_couplingCenterToRearAxleMin": 12000, + "techRecord_couplingCenterToRearTrlMax": 12000, + "techRecord_couplingCenterToRearTrlMin": 12000, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-02-05T12:42:03.346Z", + "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", + "techRecord_createdByName": null, + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 12000, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 12000, + "techRecord_dimensions_axleSpacing_2_axles": "3-4", + "techRecord_dimensions_axleSpacing_2_value": 12000, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2600, + "techRecord_euVehicleCategory": "m1", + "techRecord_firstUseDate": "2012-12-12", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": 12000, + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 100, + "techRecord_grossEecWeight": 100, + "techRecord_grossGbWeight": 100, + "techRecord_make": "31807HM&G", + "techRecord_manufacturerDetails_address1": "Address", + "techRecord_manufacturerDetails_address2": "Address", + "techRecord_manufacturerDetails_address3": "County", + "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", + "techRecord_manufacturerDetails_faxNumber": "07816527635", + "techRecord_manufacturerDetails_manufacturerNotes": "Manufacturer Note", + "techRecord_manufacturerDetails_name": "Name", + "techRecord_manufacturerDetails_postCode": "PSTCD", + "techRecord_manufacturerDetails_postTown": "Town", + "techRecord_manufacturerDetails_telephoneNumber": "07265837645", + "techRecord_manufactureYear": 2012, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": "12345", + "techRecord_noOfAxles": 4, + "techRecord_notes": "A Complete TRL Semi-Trailer Battery with ADR Details", + "techRecord_ntaNumber": "123456", + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": 12000, + "techRecord_reasonForCreation": "Testing.", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2012-12-12", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "S", + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "12345", + "techRecord_variantVersionNumber": "12345", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "TRLTST7", + "vin": "TRLTST7" + }, + { + "systemNumber": "11000013", + "createdTimestamp": "2024-03-25T17:64:12.334Z", + "vin": "P012301230123", + "partialVin": "230123", + "primaryVrm": "CT70VRL", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_vehicleSubclass_0": "string", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_model": "FM", + "techRecord_functionCode": "A", + "techRecord_brakeCode": "178202", + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_manufactureYear": 2018, + "techRecord_regnDate": "2019-06-24", + "techRecord_ntaNumber": "123456", + "techRecord_conversionRefNo": "7891234", + "techRecord_speedLimiterMrk": true, + "techRecord_tachoExemptMrk": true, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_statusCode": "current", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_trainGbWeight": 1500, + "techRecord_trainDesignWeight": 2000, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_tyreUseCode": "2B", + "techRecord_roadFriendly": true, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euroStandard": "7", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_noOfAxles": 2, + "techRecord_vehicleType": "hgv", + "techRecord_vehicleConfiguration": "semi-car transporter", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_notes": "test note", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_brakes_dtpNumber": "sdgsd", + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_numberOfWheelsDriven": null, + "techRecord_recordCompleteness": "complete" + }, + { + "systemNumber": "11000027", + "createdTimestamp": "2024-03-25T17:14:12.665Z", + "vin": "P012301270123", + "partialVin": "270123", + "primaryVrm": "CT70VRL", + "secondaryVrms": [ + "CT56DRG" + ], + "techRecord_vehicleSubclass_0": "string", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "string", + "techRecord_model": "string", + "techRecord_functionCode": "A", + "techRecord_brakeCode": "178202", + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_manufactureYear": 2018, + "techRecord_regnDate": "2019-06-24", + "techRecord_ntaNumber": "123456", + "techRecord_conversionRefNo": "7891234", + "techRecord_speedLimiterMrk": true, + "techRecord_tachoExemptMrk": true, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_statusCode": "provisional", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_trainGbWeight": 1500, + "techRecord_trainDesignWeight": 2000, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_tyreUseCode": "2B", + "techRecord_roadFriendly": true, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euroStandard": "7", + "techRecord_dtpNumber": "string", + "techRecord_fuelPropulsionSystem": "string", + "techRecord_offRoad": true, + "techRecord_numberOfWheelsDriven": 2, + "techRecord_euVehicleCategory": "m1", + "techRecord_emissionsLimit": 2, + "techRecord_departmentalVehicleMarker": true, + "techRecord_alterationMarker": true, + "techRecord_approvalType": "abc", + "techRecord_approvalTypeNumber": "abcd", + "techRecord_variantNumber": "string", + "techRecord_variantVersionNumber": "string", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_noOfAxles": 2, + "techRecord_vehicleType": "hgv", + "techRecord_vehicleConfiguration": "semi-car transporter", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_notes": "test note", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_brakes_dtpNumber": "sdgsd", + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_recordCompleteness": "complete" + }, + { + "systemNumber": "VTA16QA", + "createdTimestamp": "2024-03-25T17:14:20.347Z", + "vin": "AUTOQAPCM00000002", + "partialVin": "000002", + "primaryVrm": "QA02CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA16QA", + "createdTimestamp": "2024-03-26T17:14:12.347Z", + "vin": "AUTOQAPCM00000002", + "partialVin": "000002", + "primaryVrm": "QA02CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": "m2", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA17QA", + "createdTimestamp": "2024-03-25T17:14:21.347Z", + "vin": "AUTOQAPCM00000012", + "partialVin": "000012", + "primaryVrm": "QA12CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA17QA", + "createdTimestamp": "2024-03-26T17:14:13.347Z", + "vin": "AUTOQAPCM00000012", + "partialVin": "000012", + "primaryVrm": "QA12CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": "m2", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA18QA", + "createdTimestamp": "2024-03-25T17:14:22.347Z", + "vin": "AUTOQAPCM00000022", + "partialVin": "000022", + "primaryVrm": "QA22CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA18QA", + "createdTimestamp": "2024-03-26T17:14:14.347Z", + "vin": "AUTOQAPCM00000022", + "partialVin": "000022", + "primaryVrm": "QA22CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": "m2", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA19QA", + "createdTimestamp": "2024-03-25T17:14:23.347Z", + "vin": "AUTOQAPCM00000003", + "partialVin": "000003", + "primaryVrm": "QA03CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA19QA", + "createdTimestamp": "2024-03-26T17:14:15.347Z", + "vin": "AUTOQAPCM00000003", + "partialVin": "000003", + "primaryVrm": "QA03CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": "m3", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA20QA", + "createdTimestamp": "2024-03-25T17:14:24.347Z", + "vin": "AUTOQAPCM00000013", + "partialVin": "000013", + "primaryVrm": "QA13CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA20QA", + "createdTimestamp": "2024-03-26T17:14:16.347Z", + "vin": "AUTOQAPCM00000013", + "partialVin": "000013", + "primaryVrm": "QA13CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": "m3", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA21QA", + "createdTimestamp": "2024-03-25T17:14:25.347Z", + "vin": "AUTOQAPCM00000033", + "partialVin": "000033", + "primaryVrm": "QA33CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2019-01-16T12:24:38.027Z", + "techRecord_dispensations": "None", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", + "techRecord_lastUpdatedById": "10000009", + "techRecord_lastUpdatedByName": "CVS Automation9", + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "archived", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA21QA", + "createdTimestamp": "2024-03-26T17:14:17.347Z", + "vin": "AUTOQAPCM00000033", + "partialVin": "000033", + "primaryVrm": "QA33CTM", + "secondaryVrms": [ + "X71LTA" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 0, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "A", + "techRecord_axles_0_tyres_speedCategorySymbol": "j", + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 7100, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_0_weights_kerbWeight": 5018, + "techRecord_axles_0_weights_ladenWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 0, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "A", + "techRecord_axles_1_tyres_speedCategorySymbol": "j", + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 12600, + "techRecord_axles_1_weights_gbWeight": 11500, + "techRecord_axles_1_weights_kerbWeight": 8297, + "techRecord_axles_1_weights_ladenWeight": 11500, + "techRecord_bodyMake": "Plaxton", + "techRecord_bodyModel": "Tourismo", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakeCode": "171202", + "techRecord_brakes_brakeCode": "171202", + "techRecord_brakes_brakeCodeOriginal": "123", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_retarderBrakeOne": "exhaust", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_chassisMake": "Mercedes", + "techRecord_chassisModel": "632,01", + "techRecord_coifDate": "2010-12-20", + "techRecord_conversionRefNo": "2", + "techRecord_createdAt": "2022-11-16T21:43:03.236Z", + "techRecord_createdById": "10000009", + "techRecord_createdByName": "CVS Automation9", + "techRecord_dispensations": "None", + "techRecord_euVehicleCategory": "m3", + "techRecord_grossDesignWeight": 19000, + "techRecord_grossGbWeight": 18000, + "techRecord_grossKerbWeight": 13315, + "techRecord_grossLadenWeight": 17140, + "techRecord_manufactureYear": 2010, + "techRecord_noOfAxles": 2, + "techRecord_ntaNumber": "7", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "COIF", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2011-01-05", + "techRecord_remarks": "None", + "techRecord_seatsLowerDeck": 50, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": false, + "techRecord_speedRestriction": 0, + "techRecord_standingCapacity": 0, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": false, + "techRecord_unladenWeight": 0, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "large", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "psv" + }, + { + "systemNumber": "VTA22QA", + "createdTimestamp": "2024-03-25T17:14:26.347Z", + "vin": "AUTOQAHCN00000002", + "partialVin": "957486", + "primaryVrm": "QA02CTN", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "n2", + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA23QA", + "createdTimestamp": "2024-03-25T17:14:27.347Z", + "vin": "AUTOQAHCN00000012", + "partialVin": "957486", + "primaryVrm": "QA12CTN", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "n2", + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA24QA", + "createdTimestamp": "2024-03-25T17:14:28.347Z", + "vin": "AUTOQAHCN00000022", + "partialVin": "957486", + "primaryVrm": "QA22CTN", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "n2", + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA25QA", + "createdTimestamp": "2024-03-25T17:14:29.347Z", + "vin": "AUTOQAHCN00000003", + "partialVin": "957486", + "primaryVrm": "QA03CTN", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "n3", + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA26QA", + "createdTimestamp": "2024-03-25T17:14:30.347Z", + "vin": "AUTOQAHCN00000013", + "partialVin": "957486", + "primaryVrm": "QA03CTN", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "n3", + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA27QA", + "createdTimestamp": "2024-03-25T17:14:31.347Z", + "vin": "AUTOQAHCN00000033", + "partialVin": "957486", + "primaryVrm": "QA33CTN", + "secondaryVrms": [ + "CT96DRG" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_tyres_dataTrAxles": 345, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "AB", + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": 1234, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 1800, + "techRecord_axles_0_weights_gbWeight": 1400, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 1900, + "techRecord_axles_1_weights_gbWeight": 1600, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_tyres_dataTrAxles": 345, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "AB", + "techRecord_axles_2_tyres_speedCategorySymbol": "a7", + "techRecord_axles_2_tyres_tyreCode": 5678, + "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_2_weights_designWeight": 1900, + "techRecord_axles_2_weights_gbWeight": 1600, + "techRecord_axles_3_axleNumber": 4, + "techRecord_axles_3_tyres_dataTrAxles": 345, + "techRecord_axles_3_tyres_fitmentCode": "single", + "techRecord_axles_3_tyres_plyRating": "AB", + "techRecord_axles_3_tyres_speedCategorySymbol": "a7", + "techRecord_axles_3_tyres_tyreCode": 5678, + "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_3_weights_designWeight": 1900, + "techRecord_axles_3_weights_gbWeight": 1600, + "techRecord_axles_4_axleNumber": 5, + "techRecord_axles_4_tyres_dataTrAxles": 345, + "techRecord_axles_4_tyres_fitmentCode": "single", + "techRecord_axles_4_tyres_plyRating": "AB", + "techRecord_axles_4_tyres_speedCategorySymbol": "a7", + "techRecord_axles_4_tyres_tyreCode": 5678, + "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_4_weights_designWeight": 1900, + "techRecord_axles_4_weights_gbWeight": 1600, + "techRecord_bodyType_code": "r", + "techRecord_bodyType_description": "refuse", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdgs", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "n3", + "techRecord_euroStandard": "7", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, + "techRecord_frontAxleTo5thWheelMax": 1500, + "techRecord_frontAxleTo5thWheelMin": 1200, + "techRecord_functionCode": "A", + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxTrainDesignWeight": 500, + "techRecord_maxTrainGbWeight": 1000, + "techRecord_model": "FM", + "techRecord_noOfAxles": 5, + "techRecord_notes": "test note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_reasonForCreation": "new vehicle", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 2000, + "techRecord_trainGbWeight": 1500, + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleSubclass_0": "string", + "techRecord_vehicleType": "hgv" + }, + { + "systemNumber": "VTA11QA", + "createdTimestamp": "2024-03-25T17:14:15.347Z", + "vin": "AUTOQATRA000000001", + "partialVin": "052593", + "trailerId": "Q111111", + "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "3", + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": "**", + "techRecord_adrDetails_applicantDetails_name": "***", + "techRecord_adrDetails_applicantDetails_postcode": "********", + "techRecord_adrDetails_applicantDetails_street": "********", + "techRecord_adrDetails_applicantDetails_town": "*****", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": false, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", + "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", + "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_permittedDangerousGoods_1": "AT", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", + "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", + "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, + "techRecord_adrDetails_tank_tankStatement_statement": "B", + "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", + "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", + "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", + "techRecord_adrDetails_weight": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 24, + "techRecord_axles_0_brakes_leverLength": 135, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 158, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": " ", + "techRecord_axles_0_tyres_tyreCode": 383, + "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_0_weights_designWeight": 8250, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 24, + "techRecord_axles_1_brakes_leverLength": 135, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 158, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": " ", + "techRecord_axles_1_tyres_tyreCode": 383, + "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_1_weights_designWeight": 8250, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 24, + "techRecord_axles_2_brakes_leverLength": 135, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 158, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": " ", + "techRecord_axles_2_tyres_tyreCode": 383, + "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_2_weights_designWeight": 8250, + "techRecord_axles_2_weights_gbWeight": 8000, + "techRecord_bodyType_code": "f", + "techRecord_bodyType_description": "flat", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "326577", + "techRecord_brakes_loadSensingValve": true, + "techRecord_conversionRefNo": " ", + "techRecord_couplingCenterToRearAxleMax": 9430, + "techRecord_couplingCenterToRearAxleMin": 9430, + "techRecord_couplingCenterToRearTrlMax": 11365, + "techRecord_couplingCenterToRearTrlMin": 11365, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", + "techRecord_dimensions_axleSpacing_0_axles": "1", + "techRecord_dimensions_axleSpacing_0_value": 1310, + "techRecord_dimensions_axleSpacing_1_axles": "2", + "techRecord_dimensions_axleSpacing_1_value": 1310, + "techRecord_dimensions_length": 12271, + "techRecord_dimensions_width": 2438, + "techRecord_firstUseDate": "0001-01-01", + "techRecord_frontAxleToRearAxle": 0, + "techRecord_grossDesignWeight": 39000, + "techRecord_grossGbWeight": 39000, + "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", + "techRecord_make": "DENNISON TRAILERS", + "techRecord_manufactureYear": 2005, + "techRecord_maxLoadOnCoupling": 15000, + "techRecord_model": " ", + "techRecord_noOfAxles": 3, + "techRecord_notes": "T/S 33 1/9/06", + "techRecord_ntaNumber": "N000394760", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 1935, + "techRecord_reasonForCreation": " ", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2005-01-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "VTA12QA", + "createdTimestamp": "2024-03-25T17:14:16.347Z", + "vin": "AUTOQATRA000000002", + "partialVin": "052593", + "trailerId": "Q111112", + "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "3", + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": "**", + "techRecord_adrDetails_applicantDetails_name": "***", + "techRecord_adrDetails_applicantDetails_postcode": "********", + "techRecord_adrDetails_applicantDetails_street": "********", + "techRecord_adrDetails_applicantDetails_town": "*****", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": false, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", + "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", + "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_permittedDangerousGoods_1": "AT", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", + "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", + "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, + "techRecord_adrDetails_tank_tankStatement_statement": "B", + "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", + "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", + "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", + "techRecord_adrDetails_weight": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 24, + "techRecord_axles_0_brakes_leverLength": 135, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 158, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": " ", + "techRecord_axles_0_tyres_tyreCode": 383, + "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_0_weights_designWeight": 8250, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 24, + "techRecord_axles_1_brakes_leverLength": 135, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 158, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": " ", + "techRecord_axles_1_tyres_tyreCode": 383, + "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_1_weights_designWeight": 8250, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 24, + "techRecord_axles_2_brakes_leverLength": 135, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 158, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": " ", + "techRecord_axles_2_tyres_tyreCode": 383, + "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_2_weights_designWeight": 8250, + "techRecord_axles_2_weights_gbWeight": 8000, + "techRecord_bodyType_code": "f", + "techRecord_bodyType_description": "flat", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "326577", + "techRecord_brakes_loadSensingValve": true, + "techRecord_conversionRefNo": " ", + "techRecord_couplingCenterToRearAxleMax": 9430, + "techRecord_couplingCenterToRearAxleMin": 9430, + "techRecord_couplingCenterToRearTrlMax": 11365, + "techRecord_couplingCenterToRearTrlMin": 11365, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", + "techRecord_dimensions_axleSpacing_0_axles": "1", + "techRecord_dimensions_axleSpacing_0_value": 1310, + "techRecord_dimensions_axleSpacing_1_axles": "2", + "techRecord_dimensions_axleSpacing_1_value": 1310, + "techRecord_dimensions_length": 12271, + "techRecord_dimensions_width": 2438, + "techRecord_firstUseDate": "0001-01-01", + "techRecord_frontAxleToRearAxle": 0, + "techRecord_grossDesignWeight": 39000, + "techRecord_grossGbWeight": 39000, + "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", + "techRecord_make": "DENNISON TRAILERS", + "techRecord_manufactureYear": 2005, + "techRecord_maxLoadOnCoupling": 15000, + "techRecord_model": " ", + "techRecord_noOfAxles": 3, + "techRecord_notes": "T/S 33 1/9/06", + "techRecord_ntaNumber": "N000394760", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 1935, + "techRecord_reasonForCreation": " ", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2005-01-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "VTA13QA", + "createdTimestamp": "2024-03-25T17:14:17.347Z", + "vin": "AUTOQATRA000000003", + "partialVin": "052593", + "trailerId": "Q111113", + "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "3", + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": "**", + "techRecord_adrDetails_applicantDetails_name": "***", + "techRecord_adrDetails_applicantDetails_postcode": "********", + "techRecord_adrDetails_applicantDetails_street": "********", + "techRecord_adrDetails_applicantDetails_town": "*****", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": false, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", + "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", + "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_permittedDangerousGoods_1": "AT", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", + "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", + "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, + "techRecord_adrDetails_tank_tankStatement_statement": "B", + "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", + "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", + "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", + "techRecord_adrDetails_weight": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 24, + "techRecord_axles_0_brakes_leverLength": 135, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 158, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": " ", + "techRecord_axles_0_tyres_tyreCode": 383, + "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_0_weights_designWeight": 8250, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 24, + "techRecord_axles_1_brakes_leverLength": 135, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 158, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": " ", + "techRecord_axles_1_tyres_tyreCode": 383, + "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_1_weights_designWeight": 8250, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 24, + "techRecord_axles_2_brakes_leverLength": 135, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 158, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": " ", + "techRecord_axles_2_tyres_tyreCode": 383, + "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_2_weights_designWeight": 8250, + "techRecord_axles_2_weights_gbWeight": 8000, + "techRecord_bodyType_code": "f", + "techRecord_bodyType_description": "flat", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "326577", + "techRecord_brakes_loadSensingValve": true, + "techRecord_conversionRefNo": " ", + "techRecord_couplingCenterToRearAxleMax": 9430, + "techRecord_couplingCenterToRearAxleMin": 9430, + "techRecord_couplingCenterToRearTrlMax": 11365, + "techRecord_couplingCenterToRearTrlMin": 11365, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", + "techRecord_dimensions_axleSpacing_0_axles": "1", + "techRecord_dimensions_axleSpacing_0_value": 1310, + "techRecord_dimensions_axleSpacing_1_axles": "2", + "techRecord_dimensions_axleSpacing_1_value": 1310, + "techRecord_dimensions_length": 12271, + "techRecord_dimensions_width": 2438, + "techRecord_firstUseDate": "0001-01-01", + "techRecord_frontAxleToRearAxle": 0, + "techRecord_grossDesignWeight": 39000, + "techRecord_grossGbWeight": 39000, + "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", + "techRecord_make": "DENNISON TRAILERS", + "techRecord_manufactureYear": 2005, + "techRecord_maxLoadOnCoupling": 15000, + "techRecord_model": " ", + "techRecord_noOfAxles": 3, + "techRecord_notes": "T/S 33 1/9/06", + "techRecord_ntaNumber": "N000394760", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 1935, + "techRecord_reasonForCreation": " ", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2005-01-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "VTA14QA", + "createdTimestamp": "2024-03-25T17:14:18.347Z", + "vin": "AUTOQATRA000000004", + "partialVin": "052593", + "trailerId": "Q111114", + "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "3", + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": "**", + "techRecord_adrDetails_applicantDetails_name": "***", + "techRecord_adrDetails_applicantDetails_postcode": "********", + "techRecord_adrDetails_applicantDetails_street": "********", + "techRecord_adrDetails_applicantDetails_town": "*****", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": false, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", + "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", + "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_permittedDangerousGoods_1": "AT", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", + "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", + "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, + "techRecord_adrDetails_tank_tankStatement_statement": "B", + "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", + "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", + "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", + "techRecord_adrDetails_weight": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 24, + "techRecord_axles_0_brakes_leverLength": 135, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 158, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": " ", + "techRecord_axles_0_tyres_tyreCode": 383, + "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_0_weights_designWeight": 8250, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 24, + "techRecord_axles_1_brakes_leverLength": 135, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 158, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": " ", + "techRecord_axles_1_tyres_tyreCode": 383, + "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_1_weights_designWeight": 8250, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 24, + "techRecord_axles_2_brakes_leverLength": 135, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 158, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": " ", + "techRecord_axles_2_tyres_tyreCode": 383, + "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_2_weights_designWeight": 8250, + "techRecord_axles_2_weights_gbWeight": 8000, + "techRecord_bodyType_code": "f", + "techRecord_bodyType_description": "flat", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "326577", + "techRecord_brakes_loadSensingValve": true, + "techRecord_conversionRefNo": " ", + "techRecord_couplingCenterToRearAxleMax": 9430, + "techRecord_couplingCenterToRearAxleMin": 9430, + "techRecord_couplingCenterToRearTrlMax": 11365, + "techRecord_couplingCenterToRearTrlMin": 11365, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", + "techRecord_dimensions_axleSpacing_0_axles": "1", + "techRecord_dimensions_axleSpacing_0_value": 1310, + "techRecord_dimensions_axleSpacing_1_axles": "2", + "techRecord_dimensions_axleSpacing_1_value": 1310, + "techRecord_dimensions_length": 12271, + "techRecord_dimensions_width": 2438, + "techRecord_firstUseDate": "0001-01-01", + "techRecord_frontAxleToRearAxle": 0, + "techRecord_grossDesignWeight": 39000, + "techRecord_grossGbWeight": 39000, + "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", + "techRecord_make": "DENNISON TRAILERS", + "techRecord_manufactureYear": 2005, + "techRecord_maxLoadOnCoupling": 15000, + "techRecord_model": " ", + "techRecord_noOfAxles": 3, + "techRecord_notes": "T/S 33 1/9/06", + "techRecord_ntaNumber": "N000394760", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 1935, + "techRecord_reasonForCreation": " ", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2005-01-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "VTA15QA", + "createdTimestamp": "2024-03-25T17:14:19.347Z", + "vin": "AUTOQATRA000000005", + "partialVin": "052593", + "trailerId": "Q111115", + "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", + "techRecord_adrDetails_additionalNotes_number_0": "3", + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": "**", + "techRecord_adrDetails_applicantDetails_name": "***", + "techRecord_adrDetails_applicantDetails_postcode": "********", + "techRecord_adrDetails_applicantDetails_street": "********", + "techRecord_adrDetails_applicantDetails_town": "*****", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": true, + "techRecord_adrDetails_brakeEndurance": false, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", + "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", + "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", + "techRecord_adrDetails_listStatementApplicable": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_permittedDangerousGoods_1": "AT", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", + "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", + "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", + "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, + "techRecord_adrDetails_tank_tankStatement_statement": "B", + "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", + "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", + "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", + "techRecord_adrDetails_weight": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 24, + "techRecord_axles_0_brakes_leverLength": 135, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 158, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": " ", + "techRecord_axles_0_tyres_tyreCode": 383, + "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_0_weights_designWeight": 8250, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 24, + "techRecord_axles_1_brakes_leverLength": 135, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 158, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": " ", + "techRecord_axles_1_tyres_tyreCode": 383, + "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_1_weights_designWeight": 8250, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 24, + "techRecord_axles_2_brakes_leverLength": 135, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 158, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": " ", + "techRecord_axles_2_tyres_tyreCode": 383, + "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", + "techRecord_axles_2_weights_designWeight": 8250, + "techRecord_axles_2_weights_gbWeight": 8000, + "techRecord_bodyType_code": "f", + "techRecord_bodyType_description": "flat", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "326577", + "techRecord_brakes_loadSensingValve": true, + "techRecord_conversionRefNo": " ", + "techRecord_couplingCenterToRearAxleMax": 9430, + "techRecord_couplingCenterToRearAxleMin": 9430, + "techRecord_couplingCenterToRearTrlMax": 11365, + "techRecord_couplingCenterToRearTrlMin": 11365, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", + "techRecord_dimensions_axleSpacing_0_axles": "1", + "techRecord_dimensions_axleSpacing_0_value": 1310, + "techRecord_dimensions_axleSpacing_1_axles": "2", + "techRecord_dimensions_axleSpacing_1_value": 1310, + "techRecord_dimensions_length": 12271, + "techRecord_dimensions_width": 2438, + "techRecord_firstUseDate": "0001-01-01", + "techRecord_frontAxleToRearAxle": 0, + "techRecord_grossDesignWeight": 39000, + "techRecord_grossGbWeight": 39000, + "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", + "techRecord_make": "DENNISON TRAILERS", + "techRecord_manufactureYear": 2005, + "techRecord_maxLoadOnCoupling": 15000, + "techRecord_model": " ", + "techRecord_noOfAxles": 3, + "techRecord_notes": "T/S 33 1/9/06", + "techRecord_ntaNumber": "N000394760", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 1935, + "techRecord_reasonForCreation": " ", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2005-01-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "90000015", + "createdTimestamp": "AUTOQATRA000000012024-03-25T17:14:23.349Z", + "vin": "0", + "partialVin": "000010", + "trailerId": "Q111120", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_authIntoService": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes": null, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 150, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 9000, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes": null, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 150, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 9000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes": null, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 150, + "techRecord_axles_2_tyres_fitmentCode": "double", + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_tyreCode": 428, + "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_2_weights_designWeight": 9000, + "techRecord_axles_2_weights_eecWeight": null, + "techRecord_axles_2_weights_gbWeight": 8000, + "techRecord_bodyType_code": "y", + "techRecord_bodyType_description": "car transporter", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": "10101", + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2023-04-24T09:45:38.141Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": "o4", + "techRecord_firstUseDate": "2023-02-23", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 41000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 38000, + "techRecord_lastUpdatedAt": "2023-04-24T09:45:56.512Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_letterOfAuth": null, + "techRecord_make": "ESTEPE", + "techRecord_manufacturerDetails": null, + "techRecord_manufactureYear": 2022, + "techRecord_maxLoadOnCoupling": null, + "techRecord_microfilm": null, + "techRecord_model": "CT-2/3", + "techRecord_noOfAxles": 3, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-car transporter", + "techRecord_vehicleType": "trl" + }, + { + "systemNumber": "90000011", + "createdTimestamp": "2023-04-21T16:08:05.789Z", + "partialVin": "000006", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_authIntoService": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes": null, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 150, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 8000, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_bodyType_code": "l", + "techRecord_bodyType_description": "low loader", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": "01234", + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2023-04-21T16:08:05.789Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2023-01-10", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 8000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 8000, + "techRecord_lastUpdatedAt": "2023-04-21T16:08:36.515Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_letterOfAuth": null, + "techRecord_make": "CRANE FRUEHAUF", + "techRecord_manufacturerDetails": null, + "techRecord_manufactureYear": 2022, + "techRecord_maxLoadOnCoupling": null, + "techRecord_microfilm": null, + "techRecord_model": "CF-1000", + "techRecord_noOfAxles": 1, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "VTA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "Q111116", + "vin": "AUTOQATRA00000006" + }, + { + "systemNumber": "90000012", + "createdTimestamp": "2023-04-24T08:53:00.584Z", + "partialVin": "000007", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_authIntoService": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes": null, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 124, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 642, + "techRecord_axles_0_tyres_tyreSize": "215/75-17.5", + "techRecord_axles_0_weights_designWeight": 4500, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 4500, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 124, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 642, + "techRecord_axles_1_tyres_tyreSize": "215/75-17.5", + "techRecord_axles_1_weights_designWeight": 4500, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 4500, + "techRecord_bodyType_code": "t", + "techRecord_bodyType_description": "tipper", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": "08976", + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2023-04-24T08:53:00.584Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2023-02-01", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 10000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 10000, + "techRecord_letterOfAuth": null, + "techRecord_make": "BROSHUIS", + "techRecord_manufacturerDetails": null, + "techRecord_manufactureYear": 2022, + "techRecord_maxLoadOnCoupling": null, + "techRecord_microfilm": null, + "techRecord_model": "BS-2", + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "VTA QA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "Q111117", + "vin": "AUTOQATRA00000007" + }, + { + "systemNumber": "90000013", + "createdTimestamp": "2023-04-24T08:51:16.063Z", + "partialVin": "000008", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_authIntoService": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes": null, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 150, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 10000, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 10000, + "techRecord_bodyType_code": "f", + "techRecord_bodyType_description": "flat", + "techRecord_brakes_antilockBrakingSystem": false, + "techRecord_brakes_dtpNumber": "10234", + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2023-04-24T08:51:16.063Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": "o4", + "techRecord_firstUseDate": "2023-01-10", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 11000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 11000, + "techRecord_letterOfAuth": null, + "techRecord_make": "A FARLOW ENGINEERING LTD", + "techRecord_manufacturerDetails": null, + "techRecord_manufactureYear": 2022, + "techRecord_maxLoadOnCoupling": null, + "techRecord_microfilm": null, + "techRecord_model": "AFE-1F", + "techRecord_noOfAxles": 1, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "VTA QA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "S", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "Q111118", + "vin": "AUTOQATRA00000008" + }, + { + "systemNumber": "90000014", + "createdTimestamp": "2023-04-24T09:37:27.096Z", + "partialVin": "000009", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_authIntoService": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes": null, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 148, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 456, + "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_0_weights_designWeight": 8000, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes": null, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 148, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 456, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": 8000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_bodyType_code": "b", + "techRecord_bodyType_description": "box", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": "10034", + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2023-04-24T09:37:27.096Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": "o4", + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 17000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 17000, + "techRecord_letterOfAuth": null, + "techRecord_make": "ANDOVER TRAILERS", + "techRecord_manufacturerDetails": null, + "techRecord_manufactureYear": 2022, + "techRecord_maxLoadOnCoupling": null, + "techRecord_microfilm": null, + "techRecord_model": "AT-2F", + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "VTA QA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2023-03-20", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "Q111119", + "vin": "AUTOQATRA00000009" + }, + { + "systemNumber": "90000015", + "createdTimestamp": "2023-04-24T09:45:56.512Z", + "partialVin": "000010", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_authIntoService": null, + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes": null, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 150, + "techRecord_axles_0_tyres_fitmentCode": "double", + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 9000, + "techRecord_axles_0_weights_eecWeight": null, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes": null, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 150, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 9000, + "techRecord_axles_1_weights_eecWeight": null, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes": null, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 150, + "techRecord_axles_2_tyres_fitmentCode": "double", + "techRecord_axles_2_tyres_plyRating": null, + "techRecord_axles_2_tyres_tyreCode": 428, + "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_2_weights_designWeight": 9000, + "techRecord_axles_2_weights_eecWeight": null, + "techRecord_axles_2_weights_gbWeight": 8000, + "techRecord_bodyType_code": "y", + "techRecord_bodyType_description": "car transporter", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": "10101", + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2023-04-24T09:45:56.512Z", + "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_createdByName": "Emyr Waters", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": "o4", + "techRecord_firstUseDate": "2023-02-23", + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 41000, + "techRecord_grossEecWeight": null, + "techRecord_grossGbWeight": 38000, + "techRecord_letterOfAuth": null, + "techRecord_make": "ESTEPE", + "techRecord_manufacturerDetails": null, + "techRecord_manufactureYear": 2022, + "techRecord_maxLoadOnCoupling": null, + "techRecord_microfilm": null, + "techRecord_model": "CT-2/3", + "techRecord_noOfAxles": 3, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "VTA QA Automation Data", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": true, + "techRecord_statusCode": "current", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-car transporter", + "techRecord_vehicleType": "trl", + "trailerId": "Q111120", + "vin": "AUTOQATRA00000010" + }, + { + "systemNumber": "1100077", + "createdTimestamp": "2024-03-25T17:14:18.340Z", + "partialVin": "956789", + "primaryVrm": "ZX345CV", + "secondaryVrms": [ + "CV543XZ" + ], + "vin": "P0123010956789", + "techRecord_vehicleSubclass_0": "string", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_numberOfWheelsDriven": 2, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "1", + "techRecord_vehicleClass_description": "motorbikes up to 200cc", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "motorcycle", + "techRecord_euVehicleCategory": "l1e-a", + "techRecord_recordCompleteness": "complete" + }, + { + "systemNumber": "XYZEP5JYOMM00011", + "createdTimestamp": "2024-03-25T17:14:15.342Z", + "partialVin": "400011", + "primaryVrm": "SJG1011", + "secondaryVrms": [ + "SVNSJG" + ], + "vin": "DP76UMK4DQLTOT400011", + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": "*****", + "techRecord_applicantDetails_address2": "*****", + "techRecord_applicantDetails_address3": "*****", + "techRecord_applicantDetails_emailAddress": "*************", + "techRecord_applicantDetails_name": "************", + "techRecord_applicantDetails_postCode": "*****", + "techRecord_applicantDetails_postTown": "*", + "techRecord_applicantDetails_telephoneNumber": "**************", + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1234", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 2, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": " ", + "techRecord_axles_0_tyres_tyreCode": 462, + "techRecord_axles_0_tyres_tyreSize": "12-22.5", + "techRecord_axles_0_weights_designWeight": 7500, + "techRecord_axles_0_weights_eecWeight": 7500, + "techRecord_axles_0_weights_gbWeight": 7100, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 2, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": " ", + "techRecord_axles_1_tyres_tyreCode": 462, + "techRecord_axles_1_tyres_tyreSize": "12-22.5", + "techRecord_axles_1_weights_designWeight": 13000, + "techRecord_axles_1_weights_eecWeight": 10000, + "techRecord_axles_1_weights_gbWeight": 9500, + "techRecord_bodyType_code": "o", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": "3798A", + "techRecord_conversionRefNo": " ", + "techRecord_createdAt": "2020-02-28T12:52:39.243Z", + "techRecord_createdById": "12345", + "techRecord_createdByName": "sean", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 10000, + "techRecord_dimensions_length": 10000, + "techRecord_dimensions_width": 2000, + "techRecord_drawbarCouplingFitted": false, + "techRecord_emissionsLimit": 20, + "techRecord_euroStandard": "2", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontVehicleTo5thWheelCouplingMax": 1000, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1000, + "techRecord_frontAxleTo5thWheelMax": 1000, + "techRecord_frontAxleTo5thWheelMin": 1000, + "techRecord_frontAxleToRearAxle": 1000, + "techRecord_fuelPropulsionSystem": "Electric", + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 33500, + "techRecord_grossEecWeight": 25000, + "techRecord_grossGbWeight": 25000, + "techRecord_make": "VOLVO", + "techRecord_manufactureYear": 1984, + "techRecord_maxTrainDesignWeight": 2800, + "techRecord_maxTrainEecWeight": 2500, + "techRecord_maxTrainGbWeight": 44000, + "techRecord_microfilm_microfilmDocumentType": "HGV COC + Int Plate", + "techRecord_microfilm_microfilmRollNumber": "12346", + "techRecord_microfilm_microfilmSerialNumber": "1234", + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car" + }, + { + "systemNumber": "9000001", + "createdTimestamp": "2024-05-24T09:16:08.314Z", + "partialVin": "R00001", + "primaryVrm": "FE01CAR", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:16:08.314Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New Record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "r", + "techRecord_vehicleType": "car", + "vin": "VTAU1AUT0CAR00001" + }, + { + "systemNumber": "9000002", + "createdTimestamp": "2024-05-24T09:20:21.658Z", + "partialVin": "R00002", + "primaryVrm": "FE02CAR", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:20:21.658Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleSubclass_1": "w", + "techRecord_vehicleType": "car", + "vin": "VTAU1AUT0CAR00002" + }, + { + "systemNumber": "9000003", + "createdTimestamp": "2024-05-24T09:20:21.658Z", + "partialVin": "R00003", + "primaryVrm": "FE03CAR", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:20:21.658Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "car", + "vin": "VTAU1AUT0CAR00003" + }, + { + "systemNumber": "9000004", + "createdTimestamp": "2024-05-24T09:20:21.658Z", + "partialVin": "R00004", + "primaryVrm": "FE04CAR", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:20:21.658Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "c", + "techRecord_vehicleType": "car", + "vin": "VTAU1AUT0CAR00004" + }, + { + "systemNumber": "9000005", + "createdTimestamp": "2024-05-24T09:20:21.658Z", + "partialVin": "R00005", + "primaryVrm": "FE05CAR", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:20:21.658Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "p", + "techRecord_vehicleType": "car", + "vin": "VTAU1AUT0CAR00005" + }, + { + "systemNumber": "9000006", + "createdTimestamp": "2024-05-24T09:29:16.089Z", + "partialVin": "V00001", + "primaryVrm": "FE01LGV", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-05-24T09:29:03.531Z", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "TST CVS CSCProcessingDEV1", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Notes 1", + "techRecord_adrDetails_additionalNotes_number_0": "1", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "", + "techRecord_adrDetails_applicantDetails_city": "Swansea", + "techRecord_adrDetails_applicantDetails_name": "Joe Bloggs", + "techRecord_adrDetails_applicantDetails_postcode": "SA1 8AN", + "techRecord_adrDetails_applicantDetails_street": "Ellipse Building", + "techRecord_adrDetails_applicantDetails_town": "Swansea", + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_newCertificateRequested": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2024-04-01", + "techRecord_adrDetails_vehicleDetails_type": "Rigid box body", + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": "no", + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": "Ellipse Building", + "techRecord_applicantDetails_address2": "Padley Road", + "techRecord_applicantDetails_address3": "Swansea", + "techRecord_applicantDetails_emailAddress": "emyr.waters@dvsa.gov.uk", + "techRecord_applicantDetails_name": "DVSA", + "techRecord_applicantDetails_postCode": "SA1 8AN", + "techRecord_applicantDetails_postTown": "Swansea", + "techRecord_applicantDetails_telephoneNumber": "01792454000", + "techRecord_createdAt": "2024-05-24T09:29:16.089Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "n", + "techRecord_vehicleType": "lgv", + "vin": "VTAU1AUT0LGV00001" + }, + { + "systemNumber": "9000007", + "createdTimestamp": "2024-05-24T09:32:14.345Z", + "partialVin": "V00002", + "primaryVrm": "FE02LGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:32:14.345Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "r", + "techRecord_vehicleType": "lgv", + "vin": "VTAU1AUT0LGV00002" + }, + { + "systemNumber": "9000008", + "createdTimestamp": "2024-05-24T09:32:14.345Z", + "partialVin": "V00003", + "primaryVrm": "FE03LGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:32:14.345Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "p", + "techRecord_vehicleType": "lgv", + "vin": "VTAU1AUT0LGV00003" + }, + { + "systemNumber": "9000009", + "createdTimestamp": "2024-05-24T09:32:14.345Z", + "partialVin": "V00004", + "primaryVrm": "FE04LGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:32:14.345Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "t", + "techRecord_vehicleType": "lgv", + "vin": "VTAU1AUT0LGV00004" + }, + { + "systemNumber": "9000010", + "createdTimestamp": "2024-05-24T09:32:14.345Z", + "partialVin": "V00005", + "primaryVrm": "FE05LGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:32:14.345Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": null, + "techRecord_statusCode": "provisional", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleSubclass_0": "s", + "techRecord_vehicleType": "lgv", + "vin": "VTAU1AUT0LGV00005" + }, + { + "systemNumber": "9000011", + "createdTimestamp": "2024-05-24T09:38:22.874Z", + "partialVin": "LTRL01", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:38:22.874Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 1, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "99999999", + "vin": "VTAU1AUT0SMLTRL01" + }, + { + "systemNumber": "9000012", + "createdTimestamp": "2024-05-24T09:40:50.556Z", + "partialVin": "LTRL02", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:40:50.556Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "99999998", + "vin": "VTAU1AUT0SMLTRL02" + }, + { + "systemNumber": "9000013", + "createdTimestamp": "2024-05-24T09:42:31.314Z", + "partialVin": "LTRL03", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:42:31.314Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 1, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "99999997", + "vin": "VTAU1AUT0SMLTRL03" + }, + { + "systemNumber": "9000014", + "createdTimestamp": "2024-05-24T09:43:46.697Z", + "partialVin": "LTRL04", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:43:46.697Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "99999996", + "vin": "VTAU1AUT0SMLTRL04" + }, + { + "systemNumber": "9000015", + "createdTimestamp": "2024-05-24T09:45:40.622Z", + "partialVin": "LTRL05", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:45:40.622Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 3, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "99999995", + "vin": "VTAU1AUT0SMLTRL05" + }, + { + "systemNumber": "9000016", + "createdTimestamp": "2024-05-24T09:47:33.421Z", + "partialVin": "C00001", + "primaryVrm": "FE01MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:47:33.421Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": 2, + "techRecord_reasonForCreation": "New recored", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "2", + "techRecord_vehicleClass_description": "motorbikes over 200cc or with a sidecar", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle", + "vin": "VTAU1AUT0MCC00001" + }, + { + "systemNumber": "9000017", + "createdTimestamp": "2024-05-24T09:48:57.763Z", + "partialVin": "C00002", + "primaryVrm": "FE02MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:48:57.763Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "2", + "techRecord_vehicleClass_description": "motorbikes over 200cc or with a sidecar", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle", + "vin": "VTAU1AUT0MCC00002" + }, + { + "systemNumber": "9000018", + "createdTimestamp": "2024-05-24T09:50:57.703Z", + "partialVin": "C00003", + "primaryVrm": "FE03MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:50:57.703Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "1", + "techRecord_vehicleClass_description": "motorbikes up to 200cc", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle", + "vin": "VTAU1AUT0MCC00003" + }, + { + "systemNumber": "9000019", + "createdTimestamp": "2024-05-24T09:52:05.400Z", + "partialVin": "C00004", + "primaryVrm": "FE04MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:52:05.400Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": 3, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "3", + "techRecord_vehicleClass_description": "3 wheelers", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle", + "vin": "VTAU1AUT0MCC00004" + }, + { + "systemNumber": "9000020", + "createdTimestamp": "2024-05-24T09:54:49.704Z", + "partialVin": "C00005", + "primaryVrm": "FE05MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:54:49.704Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": 4, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "4", + "techRecord_vehicleClass_description": "MOT class 4", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle", + "vin": "VTAU1AUT0MCC00005" + }, + { + "systemNumber": "9000021", + "createdTimestamp": "2024-05-24T09:56:11.469Z", + "partialVin": "C00006", + "primaryVrm": "FE06MCC", + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_createdAt": "2024-05-24T09:56:11.469Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_euVehicleCategory": null, + "techRecord_manufactureYear": 2024, + "techRecord_noOfAxles": 2, + "techRecord_numberOfWheelsDriven": 2, + "techRecord_reasonForCreation": "New record", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "", + "techRecord_statusCode": "provisional", + "techRecord_vehicleClass_code": "1", + "techRecord_vehicleClass_description": "motorbikes up to 200cc", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "motorcycle", + "vin": "VTAU1AUT0MCC00006" + }, + { + "systemNumber": "9000027", + "createdTimestamp": "2024-08-29T13:37:44.430Z", + "partialVin": "01HGV1", + "primaryVrm": "FE01HGV", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-08-29T13:37:27.495Z", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "TST CVS CSCProcessingDEV1", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "Note 1", + "techRecord_adrDetails_additionalNotes_number_0": "3", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "354678", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": "I", + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_newCertificateRequested": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "Explosives (type 2)", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2024-08-01", + "techRecord_adrDetails_vehicleDetails_type": "Artic tractor", + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": "no", + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_approvalType": "IVA", + "techRecord_approvalTypeNumber": "RV426172", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 154, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "", + "techRecord_axles_0_tyres_tyreCode": 897, + "techRecord_axles_0_tyres_tyreSize": "315/70-22.5", + "techRecord_axles_0_weights_designWeight": 7500, + "techRecord_axles_0_weights_eecWeight": 7500, + "techRecord_axles_0_weights_gbWeight": 7500, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": 148, + "techRecord_axles_1_tyres_fitmentCode": "double", + "techRecord_axles_1_tyres_plyRating": "", + "techRecord_axles_1_tyres_tyreCode": 897, + "techRecord_axles_1_tyres_tyreSize": "315/70-22.5", + "techRecord_axles_1_weights_designWeight": 9500, + "techRecord_axles_1_weights_eecWeight": 9500, + "techRecord_axles_1_weights_gbWeight": 9500, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_parkingBrakeMrk": false, + "techRecord_axles_2_tyres_dataTrAxles": 148, + "techRecord_axles_2_tyres_fitmentCode": "double", + "techRecord_axles_2_tyres_plyRating": "", + "techRecord_axles_2_tyres_tyreCode": 897, + "techRecord_axles_2_tyres_tyreSize": "315/70-22.5", + "techRecord_axles_2_weights_designWeight": 9500, + "techRecord_axles_2_weights_eecWeight": 9500, + "techRecord_axles_2_weights_gbWeight": 9500, + "techRecord_bodyType_code": "a", + "techRecord_bodyType_description": "articulated", + "techRecord_brakes_dtpNumber": "7616S", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-08-29T13:37:44.430Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 3300, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 1350, + "techRecord_dimensions_length": 7000, + "techRecord_dimensions_width": 2540, + "techRecord_drawbarCouplingFitted": false, + "techRecord_emissionsLimit": 0.5, + "techRecord_euroStandard": "Euro 6", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": 5000, + "techRecord_frontAxleTo5thWheelMin": 5000, + "techRecord_frontAxleToRearAxle": 4650, + "techRecord_frontVehicleTo5thWheelCouplingMax": 6000, + "techRecord_frontVehicleTo5thWheelCouplingMin": 6000, + "techRecord_fuelPropulsionSystem": "Diesel", + "techRecord_functionCode": "A", + "techRecord_grossDesignWeight": 28000, + "techRecord_grossEecWeight": 26000, + "techRecord_grossGbWeight": 26000, + "techRecord_make": "SCANIA", + "techRecord_manufactureYear": 2024, + "techRecord_maxTrainDesignWeight": 0, + "techRecord_maxTrainEecWeight": 44000, + "techRecord_maxTrainGbWeight": 44000, + "techRecord_model": "S-SLEEPER HIGHLINE", + "techRecord_noOfAxles": 3, + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "New ADR Record", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2024-07-01", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": false, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": false, + "techRecord_trainDesignWeight": 50000, + "techRecord_trainEecWeight": 44000, + "techRecord_trainGbWeight": 44000, + "techRecord_tyreUseCode": "2B", + "techRecord_variantNumber": "01", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "articulated", + "techRecord_vehicleType": "hgv", + "vin": "VTAU1AUT0FE01HGV1" + }, + { + "systemNumber": "9000032", + "createdTimestamp": "2024-08-29T13:56:40.388Z", + "partialVin": "999999", + "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-08-29T13:56:22.348Z", + "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "TST CVS CSCProcessingDEV1", + "techRecord_adrDetails_additionalExaminerNotes_0_note": "ADR tipping silo", + "techRecord_adrDetails_additionalNotes_number_0": "1A", + "techRecord_adrDetails_additionalNotes_number_1": "3", + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": "", + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": false, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": true, + "techRecord_adrDetails_declarationsSeen": true, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": true, + "techRecord_adrDetails_newCertificateRequested": false, + "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", + "techRecord_adrDetails_permittedDangerousGoods_1": "AT", + "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Some special provisions", + "techRecord_adrDetails_tank_tankDetails_tankCode": "2II", + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Kassbohrer", + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123", + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "456", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "", + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2024, + "techRecord_adrDetails_vehicleDetails_approvalDate": "2024-06-30", + "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": "no", + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_approvalType": "IVA", + "techRecord_approvalTypeNumber": "RV246801", + "techRecord_authIntoService_dateAuthorised": "2024-06-28", + "techRecord_authIntoService_dateReceived": "2024-06-21", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 123, + "techRecord_axles_0_brakes_leverLength": 12, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": 156, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "", + "techRecord_axles_0_tyres_tyreCode": 428, + "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_0_weights_designWeight": 8000, + "techRecord_axles_0_weights_eecWeight": 8000, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_brakes_brakeActuator": 123, + "techRecord_axles_1_brakes_leverLength": 12, + "techRecord_axles_1_brakes_springBrakeParking": true, + "techRecord_axles_1_parkingBrakeMrk": true, + "techRecord_axles_1_tyres_dataTrAxles": 156, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "", + "techRecord_axles_1_tyres_tyreCode": 428, + "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_1_weights_designWeight": 8000, + "techRecord_axles_1_weights_eecWeight": 8000, + "techRecord_axles_1_weights_gbWeight": 8000, + "techRecord_axles_2_axleNumber": 3, + "techRecord_axles_2_brakes_brakeActuator": 123, + "techRecord_axles_2_brakes_leverLength": 12, + "techRecord_axles_2_brakes_springBrakeParking": true, + "techRecord_axles_2_parkingBrakeMrk": true, + "techRecord_axles_2_tyres_dataTrAxles": 156, + "techRecord_axles_2_tyres_fitmentCode": "single", + "techRecord_axles_2_tyres_plyRating": "", + "techRecord_axles_2_tyres_tyreCode": 428, + "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", + "techRecord_axles_2_weights_designWeight": 8000, + "techRecord_axles_2_weights_eecWeight": 8000, + "techRecord_axles_2_weights_gbWeight": 8000, + "techRecord_bodyType_code": "o", + "techRecord_bodyType_description": "other tanker", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_dtpNumber": "426741", + "techRecord_brakes_loadSensingValve": true, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": 10000, + "techRecord_couplingCenterToRearAxleMin": 10000, + "techRecord_couplingCenterToRearTrlMax": 11000, + "techRecord_couplingCenterToRearTrlMin": 11000, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2024-08-29T13:56:40.388Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": 1400, + "techRecord_dimensions_axleSpacing_1_axles": "2-3", + "techRecord_dimensions_axleSpacing_1_value": 1400, + "techRecord_dimensions_length": 12000, + "techRecord_dimensions_width": 2500, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": "2024-07-01", + "techRecord_frameDescription": "Channel section", + "techRecord_frontAxleToRearAxle": 4200, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 24000, + "techRecord_grossEecWeight": 24000, + "techRecord_grossGbWeight": 24000, + "techRecord_make": "KASSBOHRER", + "techRecord_manufactureYear": 2024, + "techRecord_maxLoadOnCoupling": 14000, + "techRecord_model": "KSSK 60", + "techRecord_noOfAxles": 3, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": 1500, + "techRecord_reasonForCreation": "New ADR record", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": true, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": "2B", + "techRecord_variantNumber": "05", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "semi-trailer", + "techRecord_vehicleType": "trl", + "trailerId": "C9999999", + "vin": "VTAU1AUT0C9999999" + }, + { + "systemNumber": "9000033", + "createdTimestamp": "2024-08-30T11:22:44.578Z", + "partialVin": "999998", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": false, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_approvalType": "IVA", + "techRecord_approvalTypeNumber": "RV537923", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_brakes_brakeActuator": 123, + "techRecord_axles_0_brakes_leverLength": 10, + "techRecord_axles_0_brakes_springBrakeParking": true, + "techRecord_axles_0_parkingBrakeMrk": true, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 8000, + "techRecord_axles_0_weights_eecWeight": 8000, + "techRecord_axles_0_weights_gbWeight": 8000, + "techRecord_bodyType_code": "f", + "techRecord_bodyType_description": "flat", + "techRecord_brakes_antilockBrakingSystem": false, + "techRecord_brakes_dtpNumber": "253689", + "techRecord_brakes_loadSensingValve": false, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": 6000, + "techRecord_couplingCenterToRearTrlMax": 8000, + "techRecord_couplingCenterToRearTrlMin": 8000, + "techRecord_couplingType": "B", + "techRecord_createdAt": "2024-08-30T11:22:44.578Z", + "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", + "techRecord_createdByName": "TST CVS CSCProcessingDEV1", + "techRecord_departmentalVehicleMarker": false, + "techRecord_dimensions_length": 8000, + "techRecord_dimensions_width": 2500, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": "2024-08-01", + "techRecord_frameDescription": "Tubular", + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 8000, + "techRecord_grossEecWeight": 8000, + "techRecord_grossGbWeight": 8000, + "techRecord_make": "A FARLOW ENGINEERING LTD", + "techRecord_manufactureYear": 2024, + "techRecord_maxLoadOnCoupling": 1000, + "techRecord_model": "1ACAD", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "", + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": 2000, + "techRecord_reasonForCreation": "New trailer record", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": true, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": "A", + "techRecord_tyreUseCode": null, + "techRecord_variantNumber": "03", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C9999998", + "vin": "VTAU1AUT0C9999998" + }, + { + "systemNumber": "4000002", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO01HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000001" + }, + { + "systemNumber": "4000003", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO02HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000002" + }, + { + "systemNumber": "4000004", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO03HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000003" + }, + { + "systemNumber": "4000005", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO04HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000004" + }, + { + "systemNumber": "4000006", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO05HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000005" + }, + { + "systemNumber": "4000007", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO06HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000006" + }, + { + "systemNumber": "4000008", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO07HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000007" + }, + { + "systemNumber": "4000009", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO08HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000008" + }, + { + "systemNumber": "4000010", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO09HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000009" + }, + { + "systemNumber": "4000011", + "createdTimestamp": "2024-09-09T09:23:44.664Z", + "partialVin": "000001", + "primaryVrm": "AUTO10HGV", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_dtpNumber": null, + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:23:44.664Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainEecWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_offRoad": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainEecWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "AUT0MAT10N0000010" + }, + { + "systemNumber": "4000012", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO01PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000011" + }, + { + "systemNumber": "4000013", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO02PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000012" + }, + { + "systemNumber": "4000014", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO03PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000013" + }, + { + "systemNumber": "4000015", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO04PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000014" + }, + { + "systemNumber": "4000016", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO05PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000015" + }, + { + "systemNumber": "4000017", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO06PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000016" + }, + { + "systemNumber": "4000018", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO07PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000017" + }, + { + "systemNumber": "4000019", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO08PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000018" + }, + { + "systemNumber": "4000020", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO09PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000019" + }, + { + "systemNumber": "4000021", + "createdTimestamp": "2024-09-09T09:34:49.583Z", + "partialVin": "000011", + "primaryVrm": "AUTO10PSV", + "techRecord_alterationMarker": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_0_weights_kerbWeight": 1, + "techRecord_axles_0_weights_ladenWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_speedCategorySymbol": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_axles_1_weights_kerbWeight": 1, + "techRecord_axles_1_weights_ladenWeight": 1, + "techRecord_bodyMake": "CAETANO", + "techRecord_bodyModel": "", + "techRecord_bodyType_code": "s", + "techRecord_bodyType_description": "single decker", + "techRecord_brakes_brakeCode": null, + "techRecord_brakes_brakeCodeOriginal": null, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, + "techRecord_brakes_dataTrBrakeOne": null, + "techRecord_brakes_dataTrBrakeThree": null, + "techRecord_brakes_dataTrBrakeTwo": null, + "techRecord_brakes_dtpNumber": "007006", + "techRecord_brakes_retarderBrakeOne": null, + "techRecord_brakes_retarderBrakeTwo": null, + "techRecord_chassisMake": "AEC", + "techRecord_chassisModel": "RELIANCE", + "techRecord_coifDate": "", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2024-09-09T09:34:49.583Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_height": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_emissionsLimit": null, + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_fuelPropulsionSystem": null, + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_grossKerbWeight": 2, + "techRecord_grossLadenWeight": 2, + "techRecord_manufactureYear": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_modelLiteral": null, + "techRecord_noOfAxles": 2, + "techRecord_numberOfSeatbelts": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_seatbeltInstallationApprovalDate": null, + "techRecord_seatsLowerDeck": 20, + "techRecord_seatsUpperDeck": 0, + "techRecord_speedLimiterMrk": null, + "techRecord_speedRestriction": null, + "techRecord_standingCapacity": null, + "techRecord_statusCode": "provisional", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_unladenWeight": null, + "techRecord_vehicleClass_code": "s", + "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleSize": "small", + "techRecord_vehicleType": "psv", + "vin": "AUT0MAT10N0000020" + }, + { + "systemNumber": "4400001", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT01TRL", + "vin": "AUT0MAT10N0000021" + }, + { + "systemNumber": "4400002", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT02TRL", + "vin": "AUT0MAT10N0000022" + }, + { + "systemNumber": "4400003", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT03TRL", + "vin": "AUT0MAT10N0000023" + }, + { + "systemNumber": "4400004", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT04TRL", + "vin": "AUT0MAT10N0000024" + }, + { + "systemNumber": "4400005", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT05TRL", + "vin": "AUT0MAT10N0000025" + }, + { + "systemNumber": "4400006", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT06TRL", + "vin": "AUT0MAT10N0000026" + }, + { + "systemNumber": "4400007", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT07TRL", + "vin": "AUT0MAT10N0000027" + }, + { + "systemNumber": "4400008", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT08TRL", + "vin": "AUT0MAT10N0000028" + }, + { + "systemNumber": "4400009", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT09TRL", + "vin": "AUT0MAT10N0000029" + }, + { + "systemNumber": "4400010", + "createdTimestamp": "2024-09-09T09:59:39.488Z", + "partialVin": "000021", + "techRecord_adrDetails_additionalExaminerNotes": null, + "techRecord_adrDetails_additionalNotes_number": null, + "techRecord_adrDetails_adrCertificateNotes": null, + "techRecord_adrDetails_adrTypeApprovalNo": null, + "techRecord_adrDetails_applicantDetails_city": null, + "techRecord_adrDetails_applicantDetails_name": null, + "techRecord_adrDetails_applicantDetails_postcode": null, + "techRecord_adrDetails_applicantDetails_street": null, + "techRecord_adrDetails_applicantDetails_town": null, + "techRecord_adrDetails_batteryListNumber": null, + "techRecord_adrDetails_brakeDeclarationIssuer": null, + "techRecord_adrDetails_brakeDeclarationsSeen": null, + "techRecord_adrDetails_brakeEndurance": null, + "techRecord_adrDetails_compatibilityGroupJ": null, + "techRecord_adrDetails_dangerousGoods": false, + "techRecord_adrDetails_declarationsSeen": null, + "techRecord_adrDetails_documents": null, + "techRecord_adrDetails_listStatementApplicable": null, + "techRecord_adrDetails_m145Statement": null, + "techRecord_adrDetails_memosApply": null, + "techRecord_adrDetails_newCertificateRequested": null, + "techRecord_adrDetails_permittedDangerousGoods": null, + "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, + "techRecord_adrDetails_tank_tankDetails_tankCode": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, + "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, + "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, + "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, + "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, + "techRecord_adrDetails_tank_tankDetails_tc3Details": null, + "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, + "techRecord_adrDetails_vehicleDetails_approvalDate": null, + "techRecord_adrDetails_vehicleDetails_type": null, + "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, + "techRecord_adrDetails_weight": null, + "techRecord_alterationMarker": null, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_applicationId": "", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": 1, + "techRecord_axles_0_weights_eecWeight": 1, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": false, + "techRecord_axles_1_tyres_dataTrAxles": null, + "techRecord_axles_1_tyres_fitmentCode": null, + "techRecord_axles_1_tyres_plyRating": null, + "techRecord_axles_1_tyres_tyreCode": null, + "techRecord_axles_1_tyres_tyreSize": null, + "techRecord_axles_1_weights_designWeight": 1, + "techRecord_axles_1_weights_eecWeight": 1, + "techRecord_axles_1_weights_gbWeight": 1, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": "other", + "techRecord_brakes_antilockBrakingSystem": null, + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": null, + "techRecord_centreOfRearmostAxleToRearOfTrl": null, + "techRecord_conversionRefNo": null, + "techRecord_couplingCenterToRearAxleMax": null, + "techRecord_couplingCenterToRearAxleMin": null, + "techRecord_couplingCenterToRearTrlMax": null, + "techRecord_couplingCenterToRearTrlMin": null, + "techRecord_couplingType": null, + "techRecord_createdAt": "2024-09-09T09:59:39.488Z", + "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", + "techRecord_createdByName": "TST.SVSA.DEV2", + "techRecord_departmentalVehicleMarker": null, + "techRecord_dimensions_axleSpacing_0_axles": "1-2", + "techRecord_dimensions_axleSpacing_0_value": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_euVehicleCategory": null, + "techRecord_firstUseDate": null, + "techRecord_frameDescription": null, + "techRecord_frontAxleToRearAxle": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": 2, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 2, + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxLoadOnCoupling": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_purchaserDetails_address1": null, + "techRecord_purchaserDetails_address2": null, + "techRecord_purchaserDetails_address3": null, + "techRecord_purchaserDetails_emailAddress": null, + "techRecord_purchaserDetails_faxNumber": null, + "techRecord_purchaserDetails_name": null, + "techRecord_purchaserDetails_postCode": null, + "techRecord_purchaserDetails_postTown": null, + "techRecord_purchaserDetails_purchaserNotes": null, + "techRecord_purchaserDetails_telephoneNumber": null, + "techRecord_rearAxleToRearTrl": null, + "techRecord_reasonForCreation": "Creation", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": null, + "techRecord_roadFriendly": null, + "techRecord_statusCode": "provisional", + "techRecord_suspensionType": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "other", + "techRecord_vehicleType": "trl", + "trailerId": "AUT10TRL", + "vin": "AUT0MAT10N0000030" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000001", + "systemNumber": "BPS000001", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000001" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000002", + "systemNumber": "BPS000002", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000002" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000003", + "systemNumber": "BPS000003", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000003" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000004", + "systemNumber": "BPS000004", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000004" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000005", + "systemNumber": "BPS000005", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000005" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000006", + "systemNumber": "BPS000006", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000006" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000007", + "systemNumber": "BPS000007", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000007" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000008", + "systemNumber": "BPS000008", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000008" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000009", + "systemNumber": "BPS000009", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000009" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000010", + "systemNumber": "BPS000010", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000010" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000011", + "systemNumber": "BPS000011", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000011" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000012", + "systemNumber": "BPS000012", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000012" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000013", + "systemNumber": "BPS000013", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000013" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000014", + "systemNumber": "BPS000014", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000014" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000015", + "systemNumber": "BPS000015", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000015" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000016", + "systemNumber": "BPS000016", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000016" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000017", + "systemNumber": "BPS000017", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000017" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000018", + "systemNumber": "BPS000018", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000018" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000019", + "systemNumber": "BPS000019", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000019" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000020", + "systemNumber": "BPS000020", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000020" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000021", + "systemNumber": "BPS000021", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000021" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000022", + "systemNumber": "BPS000022", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000022" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000023", + "systemNumber": "BPS000023", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000023" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000024", + "systemNumber": "BPS000024", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000024" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000025", + "systemNumber": "BPS000025", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000025" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000026", + "systemNumber": "BPS000026", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000026" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000027", + "systemNumber": "BPS000027", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000027" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000028", + "systemNumber": "BPS000028", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000028" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000029", + "systemNumber": "BPS000029", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000029" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000030", + "systemNumber": "BPS000030", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000030" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000031", + "systemNumber": "BPS000031", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000031" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000032", + "systemNumber": "BPS000032", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000032" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000033", + "systemNumber": "BPS000033", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000033" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000034", + "systemNumber": "BPS000034", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000034" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000035", + "systemNumber": "BPS000035", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000035" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000036", + "systemNumber": "BPS000036", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000036" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000037", + "systemNumber": "BPS000037", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000037" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000038", + "systemNumber": "BPS000038", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000038" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000039", + "systemNumber": "BPS000039", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000039" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000040", + "systemNumber": "BPS000040", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000040" + }, + { + "systemNumber": "BPS000041", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000041", + "primaryVrm": "000041Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000041", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000042", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000042", + "primaryVrm": "000042Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000042", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000043", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000043", + "primaryVrm": "000043Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000043", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000044", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000044", + "primaryVrm": "000044Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000044", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000045", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000045", + "primaryVrm": "000045Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000045", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000046", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000046", + "primaryVrm": "000046Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000046", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000047", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000047", + "primaryVrm": "000047Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000047", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000048", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000048", + "primaryVrm": "000048Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000048", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000049", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000049", + "primaryVrm": "000049Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000049", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000050", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000050", + "primaryVrm": "000050Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000050", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000051", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000051", + "primaryVrm": "000051Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000051", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000052", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000052", + "primaryVrm": "000052Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000052", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000053", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000053", + "primaryVrm": "000053Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000053", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000054", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000054", + "primaryVrm": "000054Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000054", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000055", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000055", + "primaryVrm": "000055Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000055", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000056", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000056", + "primaryVrm": "000056Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000056", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000057", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000057", + "primaryVrm": "000057Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000057", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000058", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000058", + "primaryVrm": "000058Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000058", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000059", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000059", + "primaryVrm": "000059Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000059", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000060", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000060", + "primaryVrm": "000060Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000060", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000061", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000061", + "primaryVrm": "000061Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000061", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000062", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000062", + "primaryVrm": "000062Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000062", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000063", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000063", + "primaryVrm": "000063Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000063", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000064", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000064", + "primaryVrm": "000064Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000064", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000065", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000065", + "primaryVrm": "000065Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000065", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000066", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000066", + "primaryVrm": "000066Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000066", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000067", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000067", + "primaryVrm": "000067Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000067", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000068", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000068", + "primaryVrm": "000068Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000068", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000069", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000069", + "primaryVrm": "000069Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000069", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000070", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000070", + "primaryVrm": "000070Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000070", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000071", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000071", + "primaryVrm": "000071Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000071", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000072", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000072", + "primaryVrm": "000072Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000072", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000073", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000073", + "primaryVrm": "000073Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000073", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000074", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000074", + "primaryVrm": "000074Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000074", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000075", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000075", + "primaryVrm": "000075Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000075", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000076", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000076", + "primaryVrm": "000076Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000076", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000077", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000077", + "primaryVrm": "000077Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000077", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000078", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000078", + "primaryVrm": "000078Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000078", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000079", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000079", + "primaryVrm": "000079Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000079", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000080", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000080", + "primaryVrm": "000080Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000080", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000081", + "systemNumber": "BPS000081", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000081" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000082", + "systemNumber": "BPS000082", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000082" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000083", + "systemNumber": "BPS000083", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000083" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000084", + "systemNumber": "BPS000084", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000084" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000085", + "systemNumber": "BPS000085", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_model": "F06", + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000085" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000086", + "systemNumber": "BPS000086", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000086" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000087", + "systemNumber": "BPS000087", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000087" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000088", + "systemNumber": "BPS000088", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000088" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000089", + "systemNumber": "BPS000089", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000089" + }, + { + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000090", + "systemNumber": "BPS000090", + "techRecord_antilockBrakingSystem": true, + "techRecord_bodyType_code": "p", + "techRecord_bodyType_description": "petrol/oil tanker", + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": "sdsdg", + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": "7891234", + "techRecord_couplingCenterToRearAxleMax": 900, + "techRecord_couplingCenterToRearAxleMin": 1000, + "techRecord_couplingCenterToRearTrlMax": 700, + "techRecord_couplingCenterToRearTrlMin": 800, + "techRecord_couplingType": "F", + "techRecord_createdAt": "2023-06-16T14:17:05.788Z", + "techRecord_dimensions_length": 7500, + "techRecord_dimensions_width": 2200, + "techRecord_drawbarCouplingFitted": true, + "techRecord_euVehicleCategory": "o3", + "techRecord_firstUseDate": "2019-06-24", + "techRecord_frontAxleToRearAxle": 1700, + "techRecord_grossKerbWeight": 2500, + "techRecord_grossLadenWeight": 3000, + "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", + "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", + "techRecord_lastUpdatedByName": "Emyr Waters", + "techRecord_loadSensingValve": false, + "techRecord_make": "Isuzu", + "techRecord_manufactureYear": 2018, + "techRecord_maxLoadOnCoupling": 7000, + "techRecord_noOfAxles": 2, + "techRecord_notes": "some note", + "techRecord_ntaNumber": "123456", + "techRecord_numberOfWheelsDriven": null, + "techRecord_rearAxleToRearTrl": 400, + "techRecord_reasonForCreation": "Update to EU Vehicle Category", + "techRecord_recordCompleteness": "complete", + "techRecord_regnDate": "2019-06-24", + "techRecord_roadFriendly": true, + "techRecord_statusCode": "archived", + "techRecord_suspensionType": "Y", + "techRecord_tyreUseCode": "2B", + "techRecord_updateType": "techRecordUpdate", + "techRecord_vehicleClass_code": "t", + "techRecord_vehicleClass_description": "trailer", + "techRecord_vehicleConfiguration": "centre axle drawbar", + "techRecord_vehicleType": "trl", + "trailerId": "C000001", + "vin": "BPV000090" + }, + { + "systemNumber": "BPS000091", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000091", + "primaryVrm": "000091Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000091", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000092", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000092", + "primaryVrm": "000092Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000092", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000093", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000093", + "primaryVrm": "000093Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000093", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000094", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000094", + "primaryVrm": "000094Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000094", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000095", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000095", + "primaryVrm": "000095Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000095", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000096", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000096", + "primaryVrm": "000096Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000096", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000097", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000097", + "primaryVrm": "000097Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000097", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000098", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000098", + "primaryVrm": "000098Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000098", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000099", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000099", + "primaryVrm": "000099Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000099", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000100", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000100", + "primaryVrm": "000100Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000100", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000010", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000010", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000010" + }, + { + "systemNumber": "BPS000011", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000011", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000011" + }, + { + "systemNumber": "BPS000012", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000012", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000012" + }, + { + "systemNumber": "BPS000013", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000013", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000013" + }, + { + "systemNumber": "BPS000014", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000014", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000014" + }, + { + "systemNumber": "BPS000015", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000015", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000015" + }, + { + "systemNumber": "BPS000016", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000016", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000016" + }, + { + "systemNumber": "BPS000017", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000017", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000017" + }, + { + "systemNumber": "BPS000018", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000018", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000018" + }, + { + "systemNumber": "BPS000019", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000019", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000019" + }, + { + "systemNumber": "BPS000020", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000020", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000020" + }, + { + "systemNumber": "BPS000021", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000021", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000021" + }, + { + "systemNumber": "BPS000022", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000022", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000022" + }, + { + "systemNumber": "BPS000023", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000023", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000023" + }, + { + "systemNumber": "BPS000024", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000024", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000024" + }, + { + "systemNumber": "BPS000025", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000025", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000025" + }, + { + "systemNumber": "BPS000026", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000026", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000026" + }, + { + "systemNumber": "BPS000027", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000027", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000027" + }, + { + "systemNumber": "BPS000028", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000028", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000028" + }, + { + "systemNumber": "BPS000029", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000029", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000029" + }, + { + "systemNumber": "BPS000030", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000030", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000030" + }, + { + "systemNumber": "BPS000031", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000031", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000031" + }, + { + "systemNumber": "BPS000032", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000032", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000032" + }, + { + "systemNumber": "BPS000033", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000033", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000033" + }, + { + "systemNumber": "BPS000034", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000034", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000034" + }, + { + "systemNumber": "BPS000035", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000035", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000035" + }, + { + "systemNumber": "BPS000036", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000036", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000036" + }, + { + "systemNumber": "BPS000037", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000037", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000037" + }, + { + "systemNumber": "BPS000038", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000038", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000038" + }, + { + "systemNumber": "BPS000039", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000039", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000039" + }, + { + "systemNumber": "BPS000040", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000040", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000040" + }, + { + "systemNumber": "BPS000041", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000041", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000041" + }, + { + "systemNumber": "BPS000042", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000042", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000042" + }, + { + "systemNumber": "BPS000043", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000043", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000043" + }, + { + "systemNumber": "BPS000044", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000044", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000044" + }, + { + "systemNumber": "BPS000045", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000045", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000045" + }, + { + "systemNumber": "BPS000046", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000046", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000046" + }, + { + "systemNumber": "BPS000047", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000047", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000047" + }, + { + "systemNumber": "BPS000048", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000048", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000048" + }, + { + "systemNumber": "BPS000049", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000049", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000049" + }, + { + "systemNumber": "BPS000050", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000050", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000050" + }, + { + "systemNumber": "BPS000051", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000051", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000051" + }, + { + "systemNumber": "BPS000052", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000052", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000052" + }, + { + "systemNumber": "BPS000053", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000053", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000053" + }, + { + "systemNumber": "BPS000054", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000054", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000054" + }, + { + "systemNumber": "BPS000055", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000055", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000055" + }, + { + "systemNumber": "BPS000056", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000056", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000056" + }, + { + "systemNumber": "BPS000057", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000057", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000057" + }, + { + "systemNumber": "BPS000058", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000058", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000058" + }, + { + "systemNumber": "BPS000059", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000059", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000059" + }, + { + "systemNumber": "BPS000060", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000060", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000060" + }, + { + "systemNumber": "BPS000061", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000061", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000061" + }, + { + "systemNumber": "BPS000062", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000062", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000062" + }, + { + "systemNumber": "BPS000063", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000063", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000063" + }, + { + "systemNumber": "BPS000064", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000064", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000064" + }, + { + "systemNumber": "BPS000065", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000065", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000065" + }, + { + "systemNumber": "BPS000066", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000066", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000066" + }, + { + "systemNumber": "BPS000067", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000067", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000067" + }, + { + "systemNumber": "BPS000068", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000068", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000068" + }, + { + "systemNumber": "BPS000069", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000069", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000069" + }, + { + "systemNumber": "BPS000070", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000070", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000070" + }, + { + "systemNumber": "BPS000071", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000071", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000071" + }, + { + "systemNumber": "BPS000072", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000072", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000072" + }, + { + "systemNumber": "BPS000073", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000073", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000073" + }, + { + "systemNumber": "BPS000074", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000074", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000074" + }, + { + "systemNumber": "BPS000075", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000075", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000075" + }, + { + "systemNumber": "BPS000076", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000076", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000076" + }, + { + "systemNumber": "BPS000077", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000077", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000077" + }, + { + "systemNumber": "BPS000078", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000078", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000078" + }, + { + "systemNumber": "BPS000079", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000079", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000079" + }, + { + "systemNumber": "BPS000080", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000080", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000080" + }, + { + "systemNumber": "BPS000081", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000081", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000081" + }, + { + "systemNumber": "BPS000082", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000082", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000082" + }, + { + "systemNumber": "BPS000083", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000083", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000083" + }, + { + "systemNumber": "BPS000084", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000084", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000084" + }, + { + "systemNumber": "BPS000085", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000085", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000085" + }, + { + "systemNumber": "BPS000086", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000086", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000086" + }, + { + "systemNumber": "BPS000087", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000087", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000087" + }, + { + "systemNumber": "BPS000088", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000088", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000088" + }, + { + "systemNumber": "BPS000089", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000089", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000089" + }, + { + "systemNumber": "BPS000090", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000090", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000090" + }, + { + "systemNumber": "BPS000091", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000091", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000091" + }, + { + "systemNumber": "BPS000092", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000092", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000092" + }, + { + "systemNumber": "BPS000093", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000093", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000093" + }, + { + "systemNumber": "BPS000094", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000094", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000094" + }, + { + "systemNumber": "BPS000095", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000095", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000095" + }, + { + "systemNumber": "BPS000096", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000096", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000096" + }, + { + "systemNumber": "BPS000097", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000097", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000097" + }, + { + "systemNumber": "BPS000098", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000098", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000098" + }, + { + "systemNumber": "BPS000099", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000099", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000099" + }, + { + "systemNumber": "BPS000100", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000100", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000100" + }, + { + "systemNumber": "BPS000101", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000101", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000101" + }, + { + "systemNumber": "BPS000102", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000102", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000102" + }, + { + "systemNumber": "BPS000103", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000103", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000103" + }, + { + "systemNumber": "BPS000104", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000104", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000104" + }, + { + "systemNumber": "BPS000105", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000105", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000105" + }, + { + "systemNumber": "BPS000106", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000106", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000106" + }, + { + "systemNumber": "BPS000107", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000107", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000107" + }, + { + "systemNumber": "BPS000108", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000108", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000108" + }, + { + "systemNumber": "BPS000109", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000109", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000109" + }, + { + "systemNumber": "BPS000110", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000110", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000110" + }, + { + "systemNumber": "BPS000111", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000111", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000111" + }, + { + "systemNumber": "BPS000112", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000112", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000112" + }, + { + "systemNumber": "BPS000113", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000113", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000113" + }, + { + "systemNumber": "BPS000114", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000114", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000114" + }, + { + "systemNumber": "BPS000115", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000115", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000115" + }, + { + "systemNumber": "BPS000116", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000116", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000116" + }, + { + "systemNumber": "BPS000117", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000117", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000117" + }, + { + "systemNumber": "BPS000118", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000118", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000118" + }, + { + "systemNumber": "BPS000119", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000119", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000119" + }, + { + "systemNumber": "BPS000120", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000120", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000120" + }, + { + "systemNumber": "BPS000121", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000121", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000121" + }, + { + "systemNumber": "BPS000122", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000122", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000122" + }, + { + "systemNumber": "BPS000123", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000123", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000123" + }, + { + "systemNumber": "BPS000124", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000124", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000124" + }, + { + "systemNumber": "BPS000125", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000125", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000125" + }, + { + "systemNumber": "BPS000126", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000126", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000126" + }, + { + "systemNumber": "BPS000127", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000127", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000127" + }, + { + "systemNumber": "BPS000128", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000128", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000128" + }, + { + "systemNumber": "BPS000129", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000129", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000129" + }, + { + "systemNumber": "BPS000130", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000130", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000130" + }, + { + "systemNumber": "BPS000131", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000131", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000131" + }, + { + "systemNumber": "BPS000132", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000132", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000132" + }, + { + "systemNumber": "BPS000133", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000133", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000133" + }, + { + "systemNumber": "BPS000134", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000134", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000134" + }, + { + "systemNumber": "BPS000135", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000135", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000135" + }, + { + "systemNumber": "BPS000136", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000136", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000136" + }, + { + "systemNumber": "BPS000137", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000137", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000137" + }, + { + "systemNumber": "BPS000138", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000138", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000138" + }, + { + "systemNumber": "BPS000139", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000139", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000139" + }, + { + "systemNumber": "BPS000140", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000140", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000140" + }, + { + "systemNumber": "BPS000141", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000141", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000141" + }, + { + "systemNumber": "BPS000142", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000142", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000142" + }, + { + "systemNumber": "BPS000143", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000143", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000143" + }, + { + "systemNumber": "BPS000144", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000144", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000144" + }, + { + "systemNumber": "BPS000145", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000145", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000145" + }, + { + "systemNumber": "BPS000146", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000146", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000146" + }, + { + "systemNumber": "BPS000147", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000147", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000147" + }, + { + "systemNumber": "BPS000148", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000148", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000148" + }, + { + "systemNumber": "BPS000149", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000149", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000149" + }, + { + "systemNumber": "BPS000150", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000150", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000150" + }, + { + "systemNumber": "BPS000151", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000151", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000151" + }, + { + "systemNumber": "BPS000152", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000152", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000152" + }, + { + "systemNumber": "BPS000153", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000153", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000153" + }, + { + "systemNumber": "BPS000154", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000154", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000154" + }, + { + "systemNumber": "BPS000155", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000155", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000155" + }, + { + "systemNumber": "BPS000156", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000156", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000156" + }, + { + "systemNumber": "BPS000157", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000157", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000157" + }, + { + "systemNumber": "BPS000158", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000158", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000158" + }, + { + "systemNumber": "BPS000159", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000159", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000159" + }, + { + "systemNumber": "BPS000160", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000160", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000160" + }, + { + "systemNumber": "BPS000161", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000161", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000161" + }, + { + "systemNumber": "BPS000162", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000162", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000162" + }, + { + "systemNumber": "BPS000163", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000163", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000163" + }, + { + "systemNumber": "BPS000164", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000164", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000164" + }, + { + "systemNumber": "BPS000165", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000165", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000165" + }, + { + "systemNumber": "BPS000166", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000166", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000166" + }, + { + "systemNumber": "BPS000167", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000167", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000167" + }, + { + "systemNumber": "BPS000168", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000168", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000168" + }, + { + "systemNumber": "BPS000169", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000169", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000169" + }, + { + "systemNumber": "BPS000170", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000170", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000170" + }, + { + "systemNumber": "BPS000171", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000171", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000171" + }, + { + "systemNumber": "BPS000172", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000172", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000172" + }, + { + "systemNumber": "BPS000173", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000173", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000173" + }, + { + "systemNumber": "BPS000174", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000174", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000174" + }, + { + "systemNumber": "BPS000175", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000175", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000175" + }, + { + "systemNumber": "BPS000176", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000176", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000176" + }, + { + "systemNumber": "BPS000177", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000177", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000177" + }, + { + "systemNumber": "BPS000178", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000178", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000178" + }, + { + "systemNumber": "BPS000179", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000179", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000179" + }, + { + "systemNumber": "BPS000180", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000180", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000180" + }, + { + "systemNumber": "BPS000181", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000181", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000181" + }, + { + "systemNumber": "BPS000182", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000182", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000182" + }, + { + "systemNumber": "BPS000183", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000183", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000183" + }, + { + "systemNumber": "BPS000184", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000184", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000184" + }, + { + "systemNumber": "BPS000185", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000185", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000185" + }, + { + "systemNumber": "BPS000186", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000186", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000186" + }, + { + "systemNumber": "BPS000187", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000187", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000187" + }, + { + "systemNumber": "BPS000188", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000188", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000188" + }, + { + "systemNumber": "BPS000189", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000189", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000189" + }, + { + "systemNumber": "BPS000190", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000190", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000190" + }, + { + "systemNumber": "BPS000191", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000191", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000191" + }, + { + "systemNumber": "BPS000192", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000192", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000192" + }, + { + "systemNumber": "BPS000193", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000193", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000193" + }, + { + "systemNumber": "BPS000194", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000194", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000194" + }, + { + "systemNumber": "BPS000195", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000195", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000195" + }, + { + "systemNumber": "BPS000196", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000196", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000196" + }, + { + "systemNumber": "BPS000197", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000197", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000197" + }, + { + "systemNumber": "BPS000198", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000198", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000198" + }, + { + "systemNumber": "BPS000199", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000199", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000199" + }, + { + "systemNumber": "BPS000200", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000200", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000200" + }, + { + "systemNumber": "BPS000201", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000201", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000201" + }, + { + "systemNumber": "BPS000202", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000202", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000202" + }, + { + "systemNumber": "BPS000203", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000203", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000203" + }, + { + "systemNumber": "BPS000204", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000204", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000204" + }, + { + "systemNumber": "BPS000205", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000205", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000205" + }, + { + "systemNumber": "BPS000206", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000206", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000206" + }, + { + "systemNumber": "BPS000207", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000207", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000207" + }, + { + "systemNumber": "BPS000208", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000208", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000208" + }, + { + "systemNumber": "BPS000209", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000209", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000209" + }, + { + "systemNumber": "BPS000210", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000210", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000210" + }, + { + "systemNumber": "BPS000211", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000211", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000211" + }, + { + "systemNumber": "BPS000212", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000212", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000212" + }, + { + "systemNumber": "BPS000213", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000213", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000213" + }, + { + "systemNumber": "BPS000214", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000214", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000214" + }, + { + "systemNumber": "BPS000215", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000215", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000215" + }, + { + "systemNumber": "BPS000216", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000216", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000216" + }, + { + "systemNumber": "BPS000217", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000217", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000217" + }, + { + "systemNumber": "BPS000218", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000218", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000218" + }, + { + "systemNumber": "BPS000219", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000219", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000219" + }, + { + "systemNumber": "BPS000220", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000220", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000220" + }, + { + "systemNumber": "BPS000221", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000221", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000221" + }, + { + "systemNumber": "BPS000222", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000222", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000222" + }, + { + "systemNumber": "BPS000223", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000223", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000223" + }, + { + "systemNumber": "BPS000224", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000224", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000224" + }, + { + "systemNumber": "BPS000225", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000225", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000225" + }, + { + "systemNumber": "BPS000226", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000226", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000226" + }, + { + "systemNumber": "BPS000227", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000227", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000227" + }, + { + "systemNumber": "BPS000228", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000228", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000228" + }, + { + "systemNumber": "BPS000229", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000229", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000229" + }, + { + "systemNumber": "BPS000230", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000230", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000230" + }, + { + "systemNumber": "BPS000231", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000231", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000231" + }, + { + "systemNumber": "BPS000232", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000232", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000232" + }, + { + "systemNumber": "BPS000233", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000233", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000233" + }, + { + "systemNumber": "BPS000234", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000234", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000234" + }, + { + "systemNumber": "BPS000235", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000235", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000235" + }, + { + "systemNumber": "BPS000236", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000236", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000236" + }, + { + "systemNumber": "BPS000237", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000237", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000237" + }, + { + "systemNumber": "BPS000238", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000238", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000238" + }, + { + "systemNumber": "BPS000239", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000239", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000239" + }, + { + "systemNumber": "BPS000240", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000240", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000240" + }, + { + "systemNumber": "BPS000241", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000241", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000241" + }, + { + "systemNumber": "BPS000242", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000242", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000242" + }, + { + "systemNumber": "BPS000243", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000243", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000243" + }, + { + "systemNumber": "BPS000244", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000244", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000244" + }, + { + "systemNumber": "BPS000245", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000245", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000245" + }, + { + "systemNumber": "BPS000246", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000246", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000246" + }, + { + "systemNumber": "BPS000247", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000247", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000247" + }, + { + "systemNumber": "BPS000248", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000248", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000248" + }, + { + "systemNumber": "BPS000249", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000249", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000249" + }, + { + "systemNumber": "BPS000250", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000250", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000250" + }, + { + "systemNumber": "BPS000251", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000251", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000251" + }, + { + "systemNumber": "BPS000252", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000252", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000252" + }, + { + "systemNumber": "BPS000253", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000253", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000253" + }, + { + "systemNumber": "BPS000254", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000254", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000254" + }, + { + "systemNumber": "BPS000255", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000255", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000255" + }, + { + "systemNumber": "BPS000256", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000256", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000256" + }, + { + "systemNumber": "BPS000257", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000257", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000257" + }, + { + "systemNumber": "BPS000258", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000258", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000258" + }, + { + "systemNumber": "BPS000259", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000259", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000259" + }, + { + "systemNumber": "BPS000260", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000260", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000260" + }, + { + "systemNumber": "BPS000261", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000261", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000261" + }, + { + "systemNumber": "BPS000262", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000262", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000262" + }, + { + "systemNumber": "BPS000263", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000263", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000263" + }, + { + "systemNumber": "BPS000264", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000264", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000264" + }, + { + "systemNumber": "BPS000265", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000265", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000265" + }, + { + "systemNumber": "BPS000266", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000266", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000266" + }, + { + "systemNumber": "BPS000267", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000267", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000267" + }, + { + "systemNumber": "BPS000268", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000268", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000268" + }, + { + "systemNumber": "BPS000269", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000269", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000269" + }, + { + "systemNumber": "BPS000270", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000270", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000270" + }, + { + "systemNumber": "BPS000271", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000271", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000271" + }, + { + "systemNumber": "BPS000272", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000272", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000272" + }, + { + "systemNumber": "BPS000273", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000273", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000273" + }, + { + "systemNumber": "BPS000274", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000274", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000274" + }, + { + "systemNumber": "BPS000275", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000275", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000275" + }, + { + "systemNumber": "BPS000276", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000276", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000276" + }, + { + "systemNumber": "BPS000277", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000277", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000277" + }, + { + "systemNumber": "BPS000278", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000278", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000278" + }, + { + "systemNumber": "BPS000279", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000279", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000279" + }, + { + "systemNumber": "BPS000280", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000280", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000280" + }, + { + "systemNumber": "BPS000281", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000281", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000281" + }, + { + "systemNumber": "BPS000282", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000282", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000282" + }, + { + "systemNumber": "BPS000283", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000283", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000283" + }, + { + "systemNumber": "BPS000284", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000284", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000284" + }, + { + "systemNumber": "BPS000285", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000285", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000285" + }, + { + "systemNumber": "BPS000286", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000286", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000286" + }, + { + "systemNumber": "BPS000287", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000287", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000287" + }, + { + "systemNumber": "BPS000288", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000288", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000288" + }, + { + "systemNumber": "BPS000289", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000289", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000289" + }, + { + "systemNumber": "BPS000290", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000290", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000290" + }, + { + "systemNumber": "BPS000291", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000291", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000291" + }, + { + "systemNumber": "BPS000292", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000292", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000292" + }, + { + "systemNumber": "BPS000293", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000293", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000293" + }, + { + "systemNumber": "BPS000294", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000294", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000294" + }, + { + "systemNumber": "BPS000295", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000295", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000295" + }, + { + "systemNumber": "BPS000296", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000296", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000296" + }, + { + "systemNumber": "BPS000297", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000297", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000297" + }, + { + "systemNumber": "BPS000298", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000298", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000298" + }, + { + "systemNumber": "BPS000299", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000299", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000299" + }, + { + "systemNumber": "BPS000300", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000300", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000300" + }, + { + "systemNumber": "BPS000301", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000301", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000301" + }, + { + "systemNumber": "BPS000302", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000302", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000302" + }, + { + "systemNumber": "BPS000303", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000303", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000303" + }, + { + "systemNumber": "BPS000304", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000304", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000304" + }, + { + "systemNumber": "BPS000305", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000305", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000305" + }, + { + "systemNumber": "BPS000306", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000306", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000306" + }, + { + "systemNumber": "BPS000307", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000307", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000307" + }, + { + "systemNumber": "BPS000308", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000308", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000308" + }, + { + "systemNumber": "BPS000309", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000309", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000309" + }, + { + "systemNumber": "BPS000310", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000310", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000310" + }, + { + "systemNumber": "BPS000311", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000311", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000311" + }, + { + "systemNumber": "BPS000312", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000312", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000312" + }, + { + "systemNumber": "BPS000313", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000313", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000313" + }, + { + "systemNumber": "BPS000314", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000314", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000314" + }, + { + "systemNumber": "BPS000315", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000315", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000315" + }, + { + "systemNumber": "BPS000316", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000316", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000316" + }, + { + "systemNumber": "BPS000317", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000317", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000317" + }, + { + "systemNumber": "BPS000318", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000318", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000318" + }, + { + "systemNumber": "BPS000319", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000319", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000319" + }, + { + "systemNumber": "BPS000320", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000320", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000320" + }, + { + "systemNumber": "BPS000321", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000321", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000321" + }, + { + "systemNumber": "BPS000322", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000322", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000322" + }, + { + "systemNumber": "BPS000323", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000323", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000323" + }, + { + "systemNumber": "BPS000324", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000324", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000324" + }, + { + "systemNumber": "BPS000325", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000325", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000325" + }, + { + "systemNumber": "BPS000326", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000326", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000326" + }, + { + "systemNumber": "BPS000327", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000327", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000327" + }, + { + "systemNumber": "BPS000328", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000328", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000328" + }, + { + "systemNumber": "BPS000329", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000329", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000329" + }, + { + "systemNumber": "BPS000330", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000330", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000330" + }, + { + "systemNumber": "BPS000331", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000331", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000331" + }, + { + "systemNumber": "BPS000332", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000332", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000332" + }, + { + "systemNumber": "BPS000333", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000333", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000333" + }, + { + "systemNumber": "BPS000334", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000334", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000334" + }, + { + "systemNumber": "BPS000335", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000335", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000335" + }, + { + "systemNumber": "BPS000336", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000336", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000336" + }, + { + "systemNumber": "BPS000337", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000337", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000337" + }, + { + "systemNumber": "BPS000338", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000338", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000338" + }, + { + "systemNumber": "BPS000339", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000339", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000339" + }, + { + "systemNumber": "BPS000340", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000340", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000340" + }, + { + "systemNumber": "BPS000341", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000341", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000341" + }, + { + "systemNumber": "BPS000342", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000342", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000342" + }, + { + "systemNumber": "BPS000343", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000343", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000343" + }, + { + "systemNumber": "BPS000344", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000344", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000344" + }, + { + "systemNumber": "BPS000345", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000345", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000345" + }, + { + "systemNumber": "BPS000346", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000346", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000346" + }, + { + "systemNumber": "BPS000347", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000347", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000347" + }, + { + "systemNumber": "BPS000348", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000348", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000348" + }, + { + "systemNumber": "BPS000349", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000349", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000349" + }, + { + "systemNumber": "BPS000350", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000350", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000350" + }, + { + "systemNumber": "BPS000351", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000351", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000351" + }, + { + "systemNumber": "BPS000352", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000352", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000352" + }, + { + "systemNumber": "BPS000353", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000353", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000353" + }, + { + "systemNumber": "BPS000354", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000354", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000354" + }, + { + "systemNumber": "BPS000355", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000355", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000355" + }, + { + "systemNumber": "BPS000356", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000356", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000356" + }, + { + "systemNumber": "BPS000357", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000357", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000357" + }, + { + "systemNumber": "BPS000358", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000358", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000358" + }, + { + "systemNumber": "BPS000359", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000359", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000359" + }, + { + "systemNumber": "BPS000360", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000360", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000360" + }, + { + "systemNumber": "BPS000361", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000361", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000361" + }, + { + "systemNumber": "BPS000362", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000362", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000362" + }, + { + "systemNumber": "BPS000363", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000363", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000363" + }, + { + "systemNumber": "BPS000364", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000364", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000364" + }, + { + "systemNumber": "BPS000365", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000365", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000365" + }, + { + "systemNumber": "BPS000366", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000366", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000366" + }, + { + "systemNumber": "BPS000367", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000367", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000367" + }, + { + "systemNumber": "BPS000368", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000368", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000368" + }, + { + "systemNumber": "BPS000369", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000369", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000369" + }, + { + "systemNumber": "BPS000370", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000370", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000370" + }, + { + "systemNumber": "BPS000371", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000371", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000371" + }, + { + "systemNumber": "BPS000372", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000372", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000372" + }, + { + "systemNumber": "BPS000373", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000373", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000373" + }, + { + "systemNumber": "BPS000374", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000374", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000374" + }, + { + "systemNumber": "BPS000375", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000375", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000375" + }, + { + "systemNumber": "BPS000376", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000376", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000376" + }, + { + "systemNumber": "BPS000377", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000377", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000377" + }, + { + "systemNumber": "BPS000378", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000378", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000378" + }, + { + "systemNumber": "BPS000379", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000379", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000379" + }, + { + "systemNumber": "BPS000380", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000380", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000380" + }, + { + "systemNumber": "BPS000381", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000381", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000381" + }, + { + "systemNumber": "BPS000382", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000382", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000382" + }, + { + "systemNumber": "BPS000383", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000383", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000383" + }, + { + "systemNumber": "BPS000384", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000384", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000384" + }, + { + "systemNumber": "BPS000385", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000385", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000385" + }, + { + "systemNumber": "BPS000386", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000386", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000386" + }, + { + "systemNumber": "BPS000387", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000387", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000387" + }, + { + "systemNumber": "BPS000388", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000388", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000388" + }, + { + "systemNumber": "BPS000389", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000389", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000389" + }, + { + "systemNumber": "BPS000390", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000390", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000390" + }, + { + "systemNumber": "BPS000391", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000391", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000391" + }, + { + "systemNumber": "BPS000392", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000392", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000392" + }, + { + "systemNumber": "BPS000393", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000393", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000393" + }, + { + "systemNumber": "BPS000394", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000394", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000394" + }, + { + "systemNumber": "BPS000395", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000395", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000395" + }, + { + "systemNumber": "BPS000396", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000396", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000396" + }, + { + "systemNumber": "BPS000397", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000397", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000397" + }, + { + "systemNumber": "BPS000398", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000398", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000398" + }, + { + "systemNumber": "BPS000399", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000399", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000399" + }, + { + "systemNumber": "BPS000400", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000400", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000400" + }, + { + "systemNumber": "BPS000401", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000401", + "primaryVrm": "000401Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000401", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000402", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000402", + "primaryVrm": "000402Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000402", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000403", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000403", + "primaryVrm": "000403Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000403", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000404", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000404", + "primaryVrm": "000404Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000404", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000405", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000405", + "primaryVrm": "000405Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000405", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000406", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000406", + "primaryVrm": "000406Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000406", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000407", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000407", + "primaryVrm": "000407Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000407", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000408", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000408", + "primaryVrm": "000408Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000408", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000409", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000409", + "primaryVrm": "000409Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000409", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000410", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000410", + "primaryVrm": "000410Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000410", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000411", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000411", + "primaryVrm": "000411Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000411", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000412", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000412", + "primaryVrm": "000412Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000412", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000413", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000413", + "primaryVrm": "000413Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000413", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000414", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000414", + "primaryVrm": "000414Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000414", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000415", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000415", + "primaryVrm": "000415Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000415", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000416", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000416", + "primaryVrm": "000416Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000416", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000417", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000417", + "primaryVrm": "000417Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000417", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000418", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000418", + "primaryVrm": "000418Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000418", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000419", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000419", + "primaryVrm": "000419Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000419", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000420", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000420", + "primaryVrm": "000420Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000420", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000421", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000421", + "primaryVrm": "000421Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000421", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000422", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000422", + "primaryVrm": "000422Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000422", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000423", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000423", + "primaryVrm": "000423Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000423", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000424", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000424", + "primaryVrm": "000424Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000424", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000425", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000425", + "primaryVrm": "000425Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000425", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000426", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000426", + "primaryVrm": "000426Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000426", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000427", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000427", + "primaryVrm": "000427Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000427", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000428", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000428", + "primaryVrm": "000428Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000428", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000429", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000429", + "primaryVrm": "000429Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000429", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000430", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000430", + "primaryVrm": "000430Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000430", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000431", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000431", + "primaryVrm": "000431Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000431", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000432", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000432", + "primaryVrm": "000432Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000432", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000433", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000433", + "primaryVrm": "000433Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000433", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000434", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000434", + "primaryVrm": "000434Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000434", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000435", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000435", + "primaryVrm": "000435Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000435", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000436", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000436", + "primaryVrm": "000436Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000436", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000437", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000437", + "primaryVrm": "000437Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000437", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000438", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000438", + "primaryVrm": "000438Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000438", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000439", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000439", + "primaryVrm": "000439Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000439", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000440", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000440", + "primaryVrm": "000440Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000440", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000441", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000441", + "primaryVrm": "000441Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000441", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000442", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000442", + "primaryVrm": "000442Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000442", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000443", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000443", + "primaryVrm": "000443Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000443", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000444", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000444", + "primaryVrm": "000444Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000444", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000445", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000445", + "primaryVrm": "000445Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000445", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000446", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000446", + "primaryVrm": "000446Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000446", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000447", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000447", + "primaryVrm": "000447Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000447", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000448", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000448", + "primaryVrm": "000448Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000448", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000449", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000449", + "primaryVrm": "000449Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000449", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000450", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000450", + "primaryVrm": "000450Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000450", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000451", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000451", + "primaryVrm": "000451Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000451", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000452", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000452", + "primaryVrm": "000452Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000452", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000453", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000453", + "primaryVrm": "000453Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000453", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000454", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000454", + "primaryVrm": "000454Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000454", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000455", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000455", + "primaryVrm": "000455Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000455", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000456", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000456", + "primaryVrm": "000456Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000456", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000457", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000457", + "primaryVrm": "000457Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000457", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000458", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000458", + "primaryVrm": "000458Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000458", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000459", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000459", + "primaryVrm": "000459Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000459", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000460", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000460", + "primaryVrm": "000460Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000460", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000461", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000461", + "primaryVrm": "000461Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000461", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000462", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000462", + "primaryVrm": "000462Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000462", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000463", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000463", + "primaryVrm": "000463Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000463", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000464", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000464", + "primaryVrm": "000464Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000464", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000465", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000465", + "primaryVrm": "000465Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000465", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000466", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000466", + "primaryVrm": "000466Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000466", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000467", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000467", + "primaryVrm": "000467Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000467", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000468", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000468", + "primaryVrm": "000468Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000468", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000469", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000469", + "primaryVrm": "000469Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000469", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000470", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000470", + "primaryVrm": "000470Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000470", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000471", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000471", + "primaryVrm": "000471Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000471", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000472", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000472", + "primaryVrm": "000472Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000472", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000473", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000473", + "primaryVrm": "000473Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000473", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000474", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000474", + "primaryVrm": "000474Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000474", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000475", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000475", + "primaryVrm": "000475Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000475", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000476", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000476", + "primaryVrm": "000476Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000476", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000477", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000477", + "primaryVrm": "000477Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000477", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000478", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000478", + "primaryVrm": "000478Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000478", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000479", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000479", + "primaryVrm": "000479Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000479", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000480", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000480", + "primaryVrm": "000480Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000480", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000481", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000481", + "primaryVrm": "000481Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000481", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000482", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000482", + "primaryVrm": "000482Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000482", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000483", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000483", + "primaryVrm": "000483Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000483", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000484", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000484", + "primaryVrm": "000484Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000484", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000485", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000485", + "primaryVrm": "000485Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000485", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000486", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000486", + "primaryVrm": "000486Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000486", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000487", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000487", + "primaryVrm": "000487Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000487", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000488", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000488", + "primaryVrm": "000488Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000488", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000489", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000489", + "primaryVrm": "000489Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000489", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000490", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000490", + "primaryVrm": "000490Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000490", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000491", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000491", + "primaryVrm": "000491Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000491", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000492", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000492", + "primaryVrm": "000492Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000492", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000493", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000493", + "primaryVrm": "000493Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000493", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000494", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000494", + "primaryVrm": "000494Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000494", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000495", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000495", + "primaryVrm": "000495Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000495", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000496", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000496", + "primaryVrm": "000496Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000496", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000497", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000497", + "primaryVrm": "000497Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000497", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000498", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000498", + "primaryVrm": "000498Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000498", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000499", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000499", + "primaryVrm": "000499Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000499", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000500", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000500", + "primaryVrm": "000500Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000500", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000501", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000501", + "primaryVrm": "000501Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000501", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000502", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000502", + "primaryVrm": "000502Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000502", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000503", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000503", + "primaryVrm": "000503Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000503", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000504", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000504", + "primaryVrm": "000504Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000504", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000505", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000505", + "primaryVrm": "000505Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000505", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000506", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000506", + "primaryVrm": "000506Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000506", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000507", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000507", + "primaryVrm": "000507Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000507", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000508", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000508", + "primaryVrm": "000508Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000508", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000509", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000509", + "primaryVrm": "000509Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000509", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000510", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000510", + "primaryVrm": "000510Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000510", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000511", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000511", + "primaryVrm": "000511Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000511", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000512", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000512", + "primaryVrm": "000512Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000512", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000513", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000513", + "primaryVrm": "000513Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000513", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000514", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000514", + "primaryVrm": "000514Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000514", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000515", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000515", + "primaryVrm": "000515Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000515", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000516", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000516", + "primaryVrm": "000516Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000516", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000517", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000517", + "primaryVrm": "000517Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000517", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000518", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000518", + "primaryVrm": "000518Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000518", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000519", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000519", + "primaryVrm": "000519Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000519", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000520", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000520", + "primaryVrm": "000520Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000520", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000521", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000521", + "primaryVrm": "000521Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000521", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000522", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000522", + "primaryVrm": "000522Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000522", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000523", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000523", + "primaryVrm": "000523Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000523", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000524", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000524", + "primaryVrm": "000524Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000524", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000525", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000525", + "primaryVrm": "000525Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000525", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000526", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000526", + "primaryVrm": "000526Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000526", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000527", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000527", + "primaryVrm": "000527Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000527", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000528", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000528", + "primaryVrm": "000528Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000528", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000529", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000529", + "primaryVrm": "000529Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000529", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000530", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000530", + "primaryVrm": "000530Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000530", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000531", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000531", + "primaryVrm": "000531Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000531", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000532", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000532", + "primaryVrm": "000532Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000532", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000533", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000533", + "primaryVrm": "000533Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000533", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000534", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000534", + "primaryVrm": "000534Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000534", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000535", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000535", + "primaryVrm": "000535Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000535", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000536", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000536", + "primaryVrm": "000536Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000536", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000537", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000537", + "primaryVrm": "000537Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000537", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000538", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000538", + "primaryVrm": "000538Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000538", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000539", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000539", + "primaryVrm": "000539Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000539", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000540", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000540", + "primaryVrm": "000540Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000540", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000541", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000541", + "primaryVrm": "000541Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000541", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000542", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000542", + "primaryVrm": "000542Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000542", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000543", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000543", + "primaryVrm": "000543Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000543", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000544", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000544", + "primaryVrm": "000544Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000544", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000545", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000545", + "primaryVrm": "000545Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000545", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000546", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000546", + "primaryVrm": "000546Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000546", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000547", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000547", + "primaryVrm": "000547Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000547", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000548", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000548", + "primaryVrm": "000548Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000548", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000549", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000549", + "primaryVrm": "000549Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000549", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000550", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000550", + "primaryVrm": "000550Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000550", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000551", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000551", + "primaryVrm": "000551Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000551", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000552", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000552", + "primaryVrm": "000552Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000552", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000553", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000553", + "primaryVrm": "000553Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000553", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000554", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000554", + "primaryVrm": "000554Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000554", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000555", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000555", + "primaryVrm": "000555Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000555", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000556", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000556", + "primaryVrm": "000556Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000556", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000557", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000557", + "primaryVrm": "000557Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000557", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000558", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000558", + "primaryVrm": "000558Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000558", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000559", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000559", + "primaryVrm": "000559Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000559", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000560", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000560", + "primaryVrm": "000560Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000560", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000561", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000561", + "primaryVrm": "000561Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000561", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000562", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000562", + "primaryVrm": "000562Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000562", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000563", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000563", + "primaryVrm": "000563Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000563", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000564", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000564", + "primaryVrm": "000564Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000564", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000565", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000565", + "primaryVrm": "000565Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000565", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000566", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000566", + "primaryVrm": "000566Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000566", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000567", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000567", + "primaryVrm": "000567Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000567", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000568", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000568", + "primaryVrm": "000568Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000568", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000569", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000569", + "primaryVrm": "000569Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000569", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000570", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000570", + "primaryVrm": "000570Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000570", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000571", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000571", + "primaryVrm": "000571Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000571", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000572", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000572", + "primaryVrm": "000572Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000572", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000573", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000573", + "primaryVrm": "000573Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000573", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000574", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000574", + "primaryVrm": "000574Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000574", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000575", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000575", + "primaryVrm": "000575Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000575", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000576", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000576", + "primaryVrm": "000576Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000576", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000577", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000577", + "primaryVrm": "000577Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000577", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000578", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000578", + "primaryVrm": "000578Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000578", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000579", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000579", + "primaryVrm": "000579Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000579", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000580", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000580", + "primaryVrm": "000580Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000580", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000581", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000581", + "primaryVrm": "000581Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000581", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000582", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000582", + "primaryVrm": "000582Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000582", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000583", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000583", + "primaryVrm": "000583Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000583", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000584", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000584", + "primaryVrm": "000584Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000584", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000585", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000585", + "primaryVrm": "000585Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000585", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000586", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000586", + "primaryVrm": "000586Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000586", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000587", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000587", + "primaryVrm": "000587Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000587", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000588", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000588", + "primaryVrm": "000588Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000588", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000589", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000589", + "primaryVrm": "000589Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000589", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000590", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000590", + "primaryVrm": "000590Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000590", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000591", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000591", + "primaryVrm": "000591Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000591", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000592", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000592", + "primaryVrm": "000592Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000592", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000593", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000593", + "primaryVrm": "000593Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000593", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000594", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000594", + "primaryVrm": "000594Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000594", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000595", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000595", + "primaryVrm": "000595Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000595", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000596", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000596", + "primaryVrm": "000596Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000596", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000597", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000597", + "primaryVrm": "000597Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000597", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000598", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000598", + "primaryVrm": "000598Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000598", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000599", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000599", + "primaryVrm": "000599Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000599", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000600", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000600", + "primaryVrm": "000600Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000600", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000601", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000601", + "primaryVrm": "000601Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000601", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000602", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000602", + "primaryVrm": "000602Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000602", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000603", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000603", + "primaryVrm": "000603Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000603", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000604", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000604", + "primaryVrm": "000604Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000604", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000605", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000605", + "primaryVrm": "000605Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000605", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000606", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000606", + "primaryVrm": "000606Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000606", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000607", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000607", + "primaryVrm": "000607Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000607", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000608", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000608", + "primaryVrm": "000608Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000608", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000609", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000609", + "primaryVrm": "000609Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000609", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000610", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000610", + "primaryVrm": "000610Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000610", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000611", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000611", + "primaryVrm": "000611Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000611", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000612", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000612", + "primaryVrm": "000612Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000612", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000613", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000613", + "primaryVrm": "000613Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000613", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000614", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000614", + "primaryVrm": "000614Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000614", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000615", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000615", + "primaryVrm": "000615Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000615", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000616", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000616", + "primaryVrm": "000616Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000616", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000617", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000617", + "primaryVrm": "000617Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000617", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000618", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000618", + "primaryVrm": "000618Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000618", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000619", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000619", + "primaryVrm": "000619Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000619", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000620", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000620", + "primaryVrm": "000620Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000620", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000621", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000621", + "primaryVrm": "000621Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000621", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000622", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000622", + "primaryVrm": "000622Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000622", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000623", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000623", + "primaryVrm": "000623Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000623", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000624", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000624", + "primaryVrm": "000624Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000624", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000625", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000625", + "primaryVrm": "000625Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000625", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000626", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000626", + "primaryVrm": "000626Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000626", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000627", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000627", + "primaryVrm": "000627Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000627", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000628", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000628", + "primaryVrm": "000628Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000628", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000629", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000629", + "primaryVrm": "000629Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000629", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000630", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000630", + "primaryVrm": "000630Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000630", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000631", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000631", + "primaryVrm": "000631Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000631", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000632", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000632", + "primaryVrm": "000632Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000632", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000633", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000633", + "primaryVrm": "000633Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000633", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000634", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000634", + "primaryVrm": "000634Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000634", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000635", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000635", + "primaryVrm": "000635Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000635", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000636", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000636", + "primaryVrm": "000636Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000636", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000637", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000637", + "primaryVrm": "000637Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000637", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000638", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000638", + "primaryVrm": "000638Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000638", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000639", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000639", + "primaryVrm": "000639Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000639", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000640", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000640", + "primaryVrm": "000640Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000640", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000641", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000641", + "primaryVrm": "000641Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000641", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000642", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000642", + "primaryVrm": "000642Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000642", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000643", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000643", + "primaryVrm": "000643Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000643", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000644", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000644", + "primaryVrm": "000644Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000644", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000645", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000645", + "primaryVrm": "000645Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000645", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000646", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000646", + "primaryVrm": "000646Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000646", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000647", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000647", + "primaryVrm": "000647Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000647", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000648", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000648", + "primaryVrm": "000648Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000648", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000649", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000649", + "primaryVrm": "000649Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000649", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000650", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000650", + "primaryVrm": "000650Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000650", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000651", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000651", + "primaryVrm": "000651Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000651", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000652", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000652", + "primaryVrm": "000652Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000652", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000653", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000653", + "primaryVrm": "000653Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000653", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000654", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000654", + "primaryVrm": "000654Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000654", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000655", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000655", + "primaryVrm": "000655Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000655", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000656", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000656", + "primaryVrm": "000656Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000656", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000657", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000657", + "primaryVrm": "000657Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000657", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000658", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000658", + "primaryVrm": "000658Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000658", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000659", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000659", + "primaryVrm": "000659Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000659", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000660", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000660", + "primaryVrm": "000660Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000660", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000661", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000661", + "primaryVrm": "000661Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000661", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000662", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000662", + "primaryVrm": "000662Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000662", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000663", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000663", + "primaryVrm": "000663Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000663", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000664", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000664", + "primaryVrm": "000664Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000664", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000665", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000665", + "primaryVrm": "000665Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000665", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000666", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000666", + "primaryVrm": "000666Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000666", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000667", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000667", + "primaryVrm": "000667Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000667", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000668", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000668", + "primaryVrm": "000668Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000668", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000669", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000669", + "primaryVrm": "000669Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000669", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000670", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000670", + "primaryVrm": "000670Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000670", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000671", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000671", + "primaryVrm": "000671Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000671", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000672", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000672", + "primaryVrm": "000672Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000672", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000673", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000673", + "primaryVrm": "000673Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000673", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000674", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000674", + "primaryVrm": "000674Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000674", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000675", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000675", + "primaryVrm": "000675Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000675", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000676", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000676", + "primaryVrm": "000676Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000676", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000677", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000677", + "primaryVrm": "000677Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000677", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000678", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000678", + "primaryVrm": "000678Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000678", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000679", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000679", + "primaryVrm": "000679Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000679", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000680", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000680", + "primaryVrm": "000680Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000680", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000681", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000681", + "primaryVrm": "000681Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000681", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000682", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000682", + "primaryVrm": "000682Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000682", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000683", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000683", + "primaryVrm": "000683Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000683", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000684", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000684", + "primaryVrm": "000684Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000684", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000685", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000685", + "primaryVrm": "000685Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000685", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000686", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000686", + "primaryVrm": "000686Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000686", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000687", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000687", + "primaryVrm": "000687Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000687", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000688", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000688", + "primaryVrm": "000688Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000688", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000689", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000689", + "primaryVrm": "000689Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000689", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000690", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000690", + "primaryVrm": "000690Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000690", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000691", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000691", + "primaryVrm": "000691Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000691", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000692", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000692", + "primaryVrm": "000692Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000692", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000693", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000693", + "primaryVrm": "000693Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000693", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000694", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000694", + "primaryVrm": "000694Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000694", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000695", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000695", + "primaryVrm": "000695Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000695", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000696", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000696", + "primaryVrm": "000696Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000696", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000697", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000697", + "primaryVrm": "000697Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000697", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000698", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000698", + "primaryVrm": "000698Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000698", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000699", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000699", + "primaryVrm": "000699Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000699", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000700", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000700", + "primaryVrm": "000700Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000700", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000701", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000701", + "primaryVrm": "000701Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000701", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000702", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000702", + "primaryVrm": "000702Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000702", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000703", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000703", + "primaryVrm": "000703Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000703", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000704", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000704", + "primaryVrm": "000704Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000704", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000705", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000705", + "primaryVrm": "000705Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000705", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000706", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000706", + "primaryVrm": "000706Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000706", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000707", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000707", + "primaryVrm": "000707Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000707", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000708", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000708", + "primaryVrm": "000708Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000708", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000709", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000709", + "primaryVrm": "000709Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000709", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000710", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000710", + "primaryVrm": "000710Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000710", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000711", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000711", + "primaryVrm": "000711Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000711", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000712", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000712", + "primaryVrm": "000712Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000712", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000713", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000713", + "primaryVrm": "000713Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000713", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000714", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000714", + "primaryVrm": "000714Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000714", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000715", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000715", + "primaryVrm": "000715Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000715", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000716", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000716", + "primaryVrm": "000716Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000716", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000717", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000717", + "primaryVrm": "000717Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000717", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000718", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000718", + "primaryVrm": "000718Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000718", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000719", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000719", + "primaryVrm": "000719Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000719", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000720", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000720", + "primaryVrm": "000720Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000720", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000721", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000721", + "primaryVrm": "000721Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000721", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000722", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000722", + "primaryVrm": "000722Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000722", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000723", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000723", + "primaryVrm": "000723Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000723", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000724", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000724", + "primaryVrm": "000724Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000724", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000725", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000725", + "primaryVrm": "000725Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000725", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000726", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000726", + "primaryVrm": "000726Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000726", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000727", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000727", + "primaryVrm": "000727Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000727", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000728", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000728", + "primaryVrm": "000728Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000728", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000729", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000729", + "primaryVrm": "000729Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000729", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000730", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000730", + "primaryVrm": "000730Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000730", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000731", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000731", + "primaryVrm": "000731Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000731", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000732", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000732", + "primaryVrm": "000732Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000732", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000733", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000733", + "primaryVrm": "000733Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000733", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000734", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000734", + "primaryVrm": "000734Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000734", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000735", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000735", + "primaryVrm": "000735Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000735", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000736", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000736", + "primaryVrm": "000736Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000736", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000737", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000737", + "primaryVrm": "000737Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000737", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000738", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000738", + "primaryVrm": "000738Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000738", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000739", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000739", + "primaryVrm": "000739Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000739", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000740", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000740", + "primaryVrm": "000740Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000740", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000741", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000741", + "primaryVrm": "000741Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000741", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000742", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000742", + "primaryVrm": "000742Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000742", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000743", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000743", + "primaryVrm": "000743Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000743", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000744", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000744", + "primaryVrm": "000744Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000744", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000745", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000745", + "primaryVrm": "000745Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000745", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000746", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000746", + "primaryVrm": "000746Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000746", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000747", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000747", + "primaryVrm": "000747Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000747", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000748", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000748", + "primaryVrm": "000748Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000748", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000749", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000749", + "primaryVrm": "000749Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000749", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000750", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000750", + "primaryVrm": "000750Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000750", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000751", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000751", + "primaryVrm": "000751Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000751", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000752", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000752", + "primaryVrm": "000752Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000752", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000753", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000753", + "primaryVrm": "000753Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000753", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000754", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000754", + "primaryVrm": "000754Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000754", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000755", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000755", + "primaryVrm": "000755Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000755", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000756", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000756", + "primaryVrm": "000756Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000756", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000757", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000757", + "primaryVrm": "000757Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000757", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000758", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000758", + "primaryVrm": "000758Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000758", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000759", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000759", + "primaryVrm": "000759Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000759", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000760", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000760", + "primaryVrm": "000760Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000760", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000761", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000761", + "primaryVrm": "000761Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000761", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000762", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000762", + "primaryVrm": "000762Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000762", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000763", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000763", + "primaryVrm": "000763Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000763", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000764", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000764", + "primaryVrm": "000764Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000764", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000765", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000765", + "primaryVrm": "000765Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000765", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000766", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000766", + "primaryVrm": "000766Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000766", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000767", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000767", + "primaryVrm": "000767Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000767", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000768", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000768", + "primaryVrm": "000768Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000768", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000769", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000769", + "primaryVrm": "000769Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000769", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000770", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000770", + "primaryVrm": "000770Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000770", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000771", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000771", + "primaryVrm": "000771Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000771", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000772", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000772", + "primaryVrm": "000772Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000772", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000773", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000773", + "primaryVrm": "000773Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000773", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000774", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000774", + "primaryVrm": "000774Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000774", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000775", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000775", + "primaryVrm": "000775Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000775", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000776", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000776", + "primaryVrm": "000776Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000776", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000777", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000777", + "primaryVrm": "000777Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000777", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000778", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000778", + "primaryVrm": "000778Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000778", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000779", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000779", + "primaryVrm": "000779Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000779", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000780", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000780", + "primaryVrm": "000780Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000780", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000781", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000781", + "primaryVrm": "000781Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000781", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000782", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000782", + "primaryVrm": "000782Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000782", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000783", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000783", + "primaryVrm": "000783Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000783", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000784", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000784", + "primaryVrm": "000784Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000784", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000785", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000785", + "primaryVrm": "000785Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000785", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000786", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000786", + "primaryVrm": "000786Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000786", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000787", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000787", + "primaryVrm": "000787Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000787", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000788", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000788", + "primaryVrm": "000788Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000788", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000789", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000789", + "primaryVrm": "000789Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000789", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000790", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000790", + "primaryVrm": "000790Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000790", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000791", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000791", + "primaryVrm": "000791Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000791", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000792", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000792", + "primaryVrm": "000792Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000792", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000793", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000793", + "primaryVrm": "000793Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000793", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000794", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000794", + "primaryVrm": "000794Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000794", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000795", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000795", + "primaryVrm": "000795Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000795", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000796", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000796", + "primaryVrm": "000796Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000796", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000797", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000797", + "primaryVrm": "000797Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000797", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000798", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000798", + "primaryVrm": "000798Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000798", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000799", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000799", + "primaryVrm": "000799Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000799", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000800", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000800", + "primaryVrm": "000800Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000800", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000801", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000801", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000801" + }, + { + "systemNumber": "BPS000802", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000802", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000802" + }, + { + "systemNumber": "BPS000803", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000803", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000803" + }, + { + "systemNumber": "BPS000804", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000804", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000804" + }, + { + "systemNumber": "BPS000805", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000805", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000805" + }, + { + "systemNumber": "BPS000806", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000806", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000806" + }, + { + "systemNumber": "BPS000807", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000807", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000807" + }, + { + "systemNumber": "BPS000808", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000808", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000808" + }, + { + "systemNumber": "BPS000809", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000809", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000809" + }, + { + "systemNumber": "BPS000810", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000810", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000810" + }, + { + "systemNumber": "BPS000811", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000811", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000811" + }, + { + "systemNumber": "BPS000812", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000812", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000812" + }, + { + "systemNumber": "BPS000813", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000813", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000813" + }, + { + "systemNumber": "BPS000814", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000814", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000814" + }, + { + "systemNumber": "BPS000815", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000815", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000815" + }, + { + "systemNumber": "BPS000816", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000816", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000816" + }, + { + "systemNumber": "BPS000817", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000817", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000817" + }, + { + "systemNumber": "BPS000818", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000818", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000818" + }, + { + "systemNumber": "BPS000819", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000819", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000819" + }, + { + "systemNumber": "BPS000820", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000820", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000820" + }, + { + "systemNumber": "BPS000821", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000821", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000821" + }, + { + "systemNumber": "BPS000822", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000822", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000822" + }, + { + "systemNumber": "BPS000823", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000823", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000823" + }, + { + "systemNumber": "BPS000824", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000824", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000824" + }, + { + "systemNumber": "BPS000825", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000825", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000825" + }, + { + "systemNumber": "BPS000826", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000826", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000826" + }, + { + "systemNumber": "BPS000827", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000827", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000827" + }, + { + "systemNumber": "BPS000828", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000828", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000828" + }, + { + "systemNumber": "BPS000829", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000829", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000829" + }, + { + "systemNumber": "BPS000830", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000830", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000830" + }, + { + "systemNumber": "BPS000831", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000831", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000831" + }, + { + "systemNumber": "BPS000832", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000832", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000832" + }, + { + "systemNumber": "BPS000833", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000833", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000833" + }, + { + "systemNumber": "BPS000834", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000834", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000834" + }, + { + "systemNumber": "BPS000835", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000835", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000835" + }, + { + "systemNumber": "BPS000836", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000836", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000836" + }, + { + "systemNumber": "BPS000837", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000837", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000837" + }, + { + "systemNumber": "BPS000838", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000838", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000838" + }, + { + "systemNumber": "BPS000839", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000839", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000839" + }, + { + "systemNumber": "BPS000840", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000840", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000840" + }, + { + "systemNumber": "BPS000841", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000841", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000841" + }, + { + "systemNumber": "BPS000842", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000842", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000842" + }, + { + "systemNumber": "BPS000843", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000843", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000843" + }, + { + "systemNumber": "BPS000844", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000844", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000844" + }, + { + "systemNumber": "BPS000845", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000845", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000845" + }, + { + "systemNumber": "BPS000846", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000846", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000846" + }, + { + "systemNumber": "BPS000847", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000847", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000847" + }, + { + "systemNumber": "BPS000848", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000848", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000848" + }, + { + "systemNumber": "BPS000849", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000849", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000849" + }, + { + "systemNumber": "BPS000850", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000850", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000850" + }, + { + "systemNumber": "BPS000851", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000851", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000851" + }, + { + "systemNumber": "BPS000852", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000852", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000852" + }, + { + "systemNumber": "BPS000853", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000853", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000853" + }, + { + "systemNumber": "BPS000854", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000854", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000854" + }, + { + "systemNumber": "BPS000855", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000855", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000855" + }, + { + "systemNumber": "BPS000856", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000856", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000856" + }, + { + "systemNumber": "BPS000857", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000857", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000857" + }, + { + "systemNumber": "BPS000858", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000858", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000858" + }, + { + "systemNumber": "BPS000859", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000859", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000859" + }, + { + "systemNumber": "BPS000860", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000860", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000860" + }, + { + "systemNumber": "BPS000861", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000861", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000861" + }, + { + "systemNumber": "BPS000862", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000862", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000862" + }, + { + "systemNumber": "BPS000863", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000863", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000863" + }, + { + "systemNumber": "BPS000864", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000864", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000864" + }, + { + "systemNumber": "BPS000865", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000865", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000865" + }, + { + "systemNumber": "BPS000866", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000866", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000866" + }, + { + "systemNumber": "BPS000867", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000867", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000867" + }, + { + "systemNumber": "BPS000868", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000868", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000868" + }, + { + "systemNumber": "BPS000869", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000869", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000869" + }, + { + "systemNumber": "BPS000870", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000870", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000870" + }, + { + "systemNumber": "BPS000871", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000871", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000871" + }, + { + "systemNumber": "BPS000872", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000872", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000872" + }, + { + "systemNumber": "BPS000873", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000873", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000873" + }, + { + "systemNumber": "BPS000874", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000874", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000874" + }, + { + "systemNumber": "BPS000875", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000875", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000875" + }, + { + "systemNumber": "BPS000876", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000876", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000876" + }, + { + "systemNumber": "BPS000877", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000877", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000877" + }, + { + "systemNumber": "BPS000878", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000878", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000878" + }, + { + "systemNumber": "BPS000879", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000879", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000879" + }, + { + "systemNumber": "BPS000880", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000880", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000880" + }, + { + "systemNumber": "BPS000881", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000881", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000881" + }, + { + "systemNumber": "BPS000882", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000882", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000882" + }, + { + "systemNumber": "BPS000883", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000883", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000883" + }, + { + "systemNumber": "BPS000884", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000884", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000884" + }, + { + "systemNumber": "BPS000885", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000885", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000885" + }, + { + "systemNumber": "BPS000886", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000886", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000886" + }, + { + "systemNumber": "BPS000887", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000887", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000887" + }, + { + "systemNumber": "BPS000888", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000888", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000888" + }, + { + "systemNumber": "BPS000889", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000889", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000889" + }, + { + "systemNumber": "BPS000890", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000890", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000890" + }, + { + "systemNumber": "BPS000891", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000891", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000891" + }, + { + "systemNumber": "BPS000892", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000892", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000892" + }, + { + "systemNumber": "BPS000893", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000893", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000893" + }, + { + "systemNumber": "BPS000894", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000894", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000894" + }, + { + "systemNumber": "BPS000895", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000895", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000895" + }, + { + "systemNumber": "BPS000896", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000896", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000896" + }, + { + "systemNumber": "BPS000897", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000897", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000897" + }, + { + "systemNumber": "BPS000898", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000898", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000898" + }, + { + "systemNumber": "BPS000899", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000899", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000899" + }, + { + "systemNumber": "BPS000900", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000900", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV000900" + }, + { + "systemNumber": "BPS000901", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000901", + "primaryVrm": "000901Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000901", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000902", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000902", + "primaryVrm": "000902Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000902", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000903", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000903", + "primaryVrm": "000903Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000903", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000904", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000904", + "primaryVrm": "000904Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000904", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000905", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000905", + "primaryVrm": "000905Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000905", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000906", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000906", + "primaryVrm": "000906Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000906", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000907", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000907", + "primaryVrm": "000907Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000907", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000908", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000908", + "primaryVrm": "000908Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000908", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000909", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000909", + "primaryVrm": "000909Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000909", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000910", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000910", + "primaryVrm": "000910Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000910", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000911", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000911", + "primaryVrm": "000911Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000911", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000912", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000912", + "primaryVrm": "000912Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000912", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000913", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000913", + "primaryVrm": "000913Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000913", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000914", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000914", + "primaryVrm": "000914Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000914", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000915", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000915", + "primaryVrm": "000915Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000915", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000916", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000916", + "primaryVrm": "000916Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000916", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000917", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000917", + "primaryVrm": "000917Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000917", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000918", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000918", + "primaryVrm": "000918Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000918", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000919", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000919", + "primaryVrm": "000919Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000919", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000920", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000920", + "primaryVrm": "000920Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000920", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000921", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000921", + "primaryVrm": "000921Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000921", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000922", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000922", + "primaryVrm": "000922Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000922", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000923", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000923", + "primaryVrm": "000923Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000923", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000924", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000924", + "primaryVrm": "000924Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000924", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000925", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000925", + "primaryVrm": "000925Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000925", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000926", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000926", + "primaryVrm": "000926Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000926", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000927", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000927", + "primaryVrm": "000927Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000927", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000928", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000928", + "primaryVrm": "000928Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000928", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000929", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000929", + "primaryVrm": "000929Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000929", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000930", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000930", + "primaryVrm": "000930Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000930", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000931", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000931", + "primaryVrm": "000931Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000931", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000932", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000932", + "primaryVrm": "000932Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000932", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000933", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000933", + "primaryVrm": "000933Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000933", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000934", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000934", + "primaryVrm": "000934Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000934", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000935", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000935", + "primaryVrm": "000935Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000935", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000936", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000936", + "primaryVrm": "000936Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000936", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000937", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000937", + "primaryVrm": "000937Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000937", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000938", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000938", + "primaryVrm": "000938Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000938", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000939", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000939", + "primaryVrm": "000939Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000939", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000940", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000940", + "primaryVrm": "000940Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000940", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000941", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000941", + "primaryVrm": "000941Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000941", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000942", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000942", + "primaryVrm": "000942Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000942", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000943", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000943", + "primaryVrm": "000943Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000943", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000944", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000944", + "primaryVrm": "000944Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000944", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000945", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000945", + "primaryVrm": "000945Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000945", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000946", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000946", + "primaryVrm": "000946Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000946", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000947", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000947", + "primaryVrm": "000947Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000947", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000948", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000948", + "primaryVrm": "000948Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000948", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000949", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000949", + "primaryVrm": "000949Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000949", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000950", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000950", + "primaryVrm": "000950Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000950", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000951", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000951", + "primaryVrm": "000951Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000951", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000952", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000952", + "primaryVrm": "000952Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000952", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000953", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000953", + "primaryVrm": "000953Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000953", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000954", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000954", + "primaryVrm": "000954Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000954", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000955", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000955", + "primaryVrm": "000955Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000955", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000956", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000956", + "primaryVrm": "000956Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000956", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000957", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000957", + "primaryVrm": "000957Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000957", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000958", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000958", + "primaryVrm": "000958Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000958", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000959", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000959", + "primaryVrm": "000959Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000959", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000960", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000960", + "primaryVrm": "000960Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000960", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000961", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000961", + "primaryVrm": "000961Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000961", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000962", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000962", + "primaryVrm": "000962Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000962", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000963", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000963", + "primaryVrm": "000963Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000963", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000964", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000964", + "primaryVrm": "000964Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000964", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000965", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000965", + "primaryVrm": "000965Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000965", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000966", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000966", + "primaryVrm": "000966Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000966", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000967", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000967", + "primaryVrm": "000967Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000967", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000968", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000968", + "primaryVrm": "000968Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000968", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000969", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000969", + "primaryVrm": "000969Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000969", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000970", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000970", + "primaryVrm": "000970Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000970", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000971", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000971", + "primaryVrm": "000971Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000971", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000972", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000972", + "primaryVrm": "000972Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000972", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000973", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000973", + "primaryVrm": "000973Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000973", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000974", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000974", + "primaryVrm": "000974Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000974", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000975", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000975", + "primaryVrm": "000975Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000975", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000976", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000976", + "primaryVrm": "000976Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000976", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000977", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000977", + "primaryVrm": "000977Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000977", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000978", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000978", + "primaryVrm": "000978Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000978", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000979", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000979", + "primaryVrm": "000979Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000979", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000980", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000980", + "primaryVrm": "000980Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000980", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000981", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000981", + "primaryVrm": "000981Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000981", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000982", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000982", + "primaryVrm": "000982Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000982", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000983", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000983", + "primaryVrm": "000983Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000983", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000984", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000984", + "primaryVrm": "000984Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000984", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000985", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000985", + "primaryVrm": "000985Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000985", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000986", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000986", + "primaryVrm": "000986Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000986", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000987", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000987", + "primaryVrm": "000987Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000987", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000988", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000988", + "primaryVrm": "000988Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000988", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000989", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000989", + "primaryVrm": "000989Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000989", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000990", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000990", + "primaryVrm": "000990Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000990", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000991", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000991", + "primaryVrm": "000991Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000991", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000992", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000992", + "primaryVrm": "000992Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000992", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000993", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000993", + "primaryVrm": "000993Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000993", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000994", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000994", + "primaryVrm": "000994Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000994", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000995", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000995", + "primaryVrm": "000995Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000995", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000996", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000996", + "primaryVrm": "000996Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000996", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000997", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000997", + "primaryVrm": "000997Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000997", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000998", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000998", + "primaryVrm": "000998Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000998", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS000999", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "000999", + "primaryVrm": "000999Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV000999", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001000", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001000", + "primaryVrm": "001000Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "testable", + "techRecord_regnDate": "2020-10-10", + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001000", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001000", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001000", + "primaryVrm": "001000Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001000", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001001", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001001", + "primaryVrm": "001001Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001001", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001002", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001002", + "primaryVrm": "001002Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001002", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001003", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001003", + "primaryVrm": "001003Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001003", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001004", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001004", + "primaryVrm": "001004Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001004", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001005", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001005", + "primaryVrm": "001005Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001005", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001006", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001006", + "primaryVrm": "001006Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001006", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001007", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001007", + "primaryVrm": "001007Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001007", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001008", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001008", + "primaryVrm": "001008Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001008", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001009", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001009", + "primaryVrm": "001009Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001009", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001010", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001010", + "primaryVrm": "001010Z", + "techRecord_alterationMarker": true, + "techRecord_applicantDetails_address1": null, + "techRecord_applicantDetails_address2": null, + "techRecord_applicantDetails_address3": null, + "techRecord_applicantDetails_emailAddress": null, + "techRecord_applicantDetails_name": null, + "techRecord_applicantDetails_postCode": null, + "techRecord_applicantDetails_postTown": null, + "techRecord_applicantDetails_telephoneNumber": null, + "techRecord_approvalType": "NTA", + "techRecord_approvalTypeNumber": "1", + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": 134, + "techRecord_axles_0_tyres_fitmentCode": "single", + "techRecord_axles_0_tyres_plyRating": "RA", + "techRecord_axles_0_tyres_tyreCode": 199, + "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", + "techRecord_axles_0_weights_designWeight": 3, + "techRecord_axles_0_weights_eecWeight": 2, + "techRecord_axles_0_weights_gbWeight": 1, + "techRecord_bodyType_code": "u", + "techRecord_bodyType_description": "artic", + "techRecord_brakes_dtpNumber": "12345", + "techRecord_conversionRefNo": "1", + "techRecord_createdAt": "12345", + "techRecord_createdById": "123456", + "techRecord_createdByName": "Jane Fridge", + "techRecord_departmentalVehicleMarker": true, + "techRecord_dimensions_length": 1, + "techRecord_dimensions_width": 1, + "techRecord_drawbarCouplingFitted": true, + "techRecord_emissionsLimit": 1, + "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", + "techRecord_euVehicleCategory": "m1", + "techRecord_frontAxleTo5thWheelMax": 1, + "techRecord_frontAxleTo5thWheelMin": 1, + "techRecord_frontAxleToRearAxle": 1, + "techRecord_frontVehicleTo5thWheelCouplingMax": 1, + "techRecord_frontVehicleTo5thWheelCouplingMin": 1, + "techRecord_fuelPropulsionSystem": "DieselPetrol", + "techRecord_functionCode": "R", + "techRecord_grossDesignWeight": 3, + "techRecord_grossEecWeight": 2, + "techRecord_grossGbWeight": 1, + "techRecord_make": "AEC", + "techRecord_manufactureYear": 2020, + "techRecord_maxTrainDesignWeight": 3, + "techRecord_maxTrainEecWeight": 2, + "techRecord_maxTrainGbWeight": 1, + "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", + "techRecord_microfilm_microfilmRollNumber": "1", + "techRecord_microfilm_microfilmSerialNumber": "2", + "techRecord_model": "123", + "techRecord_noOfAxles": 1, + "techRecord_ntaNumber": "2", + "techRecord_offRoad": false, + "techRecord_reasonForCreation": "Test", + "techRecord_recordCompleteness": "skeleton", + "techRecord_regnDate": "2020-10-10", + "techRecord_roadFriendly": true, + "techRecord_speedLimiterMrk": true, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": true, + "techRecord_trainDesignWeight": 3, + "techRecord_trainEecWeight": 2, + "techRecord_trainGbWeight": 1, + "techRecord_tyreUseCode": "2R", + "techRecord_variantNumber": "3", + "techRecord_variantVersionNumber": "4", + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": "heavy goods vehicle", + "techRecord_vehicleConfiguration": "rigid", + "techRecord_vehicleType": "hgv", + "vin": "BPV001010", + "techRecord_adrDetails_dangerousGoods": true + }, + { + "systemNumber": "BPS001011", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001011", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001011", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001012", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001012", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001012", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001013", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001013", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001013", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001014", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001014", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001014", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001015", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001015", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001015", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001016", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001016", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001016", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001017", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001017", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001017", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001018", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001018", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001018", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001019", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001019", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001019", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001020", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001020", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001020", + "techRecord_recordCompleteness": "skeleton" + }, + { + "systemNumber": "BPS001021", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001021", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001021" + }, + { + "systemNumber": "BPS001022", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001022", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001022" + }, + { + "systemNumber": "BPS001023", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001023", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001023" + }, + { + "systemNumber": "BPS001024", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001024", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001024" + }, + { + "systemNumber": "BPS001025", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001025", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001025" + }, + { + "systemNumber": "BPS001026", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001026", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001026" + }, + { + "systemNumber": "BPS001027", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001027", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001027" + }, + { + "systemNumber": "BPS001028", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001028", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001028" + }, + { + "systemNumber": "BPS001029", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001029", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001029" + }, + { + "systemNumber": "BPS001030", + "createdTimestamp": "2024-09-01T12:00:00.000Z", + "partialVin": "001030", + "primaryVrm": "TRAILER_ID", + "secondaryVrms": [ + "123" + ], + "techRecord_axles_0_axleNumber": 1, + "techRecord_axles_0_parkingBrakeMrk": false, + "techRecord_axles_0_tyres_dataTrAxles": null, + "techRecord_axles_0_tyres_fitmentCode": null, + "techRecord_axles_0_tyres_plyRating": null, + "techRecord_axles_0_tyres_speedCategorySymbol": "a7", + "techRecord_axles_0_tyres_tyreCode": null, + "techRecord_axles_0_tyres_tyreSize": null, + "techRecord_axles_0_weights_designWeight": null, + "techRecord_axles_0_weights_gbWeight": null, + "techRecord_axles_1_axleNumber": 2, + "techRecord_axles_1_parkingBrakeMrk": null, + "techRecord_axles_1_tyres_dataTrAxles": 345, + "techRecord_axles_1_tyres_fitmentCode": "single", + "techRecord_axles_1_tyres_plyRating": "AB", + "techRecord_axles_1_tyres_speedCategorySymbol": "a7", + "techRecord_axles_1_tyres_tyreCode": 5678, + "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", + "techRecord_axles_1_weights_designWeight": null, + "techRecord_axles_1_weights_gbWeight": null, + "techRecord_bodyType_code": "x", + "techRecord_bodyType_description": null, + "techRecord_brakeCode": "178202", + "techRecord_brakes_antilockBrakingSystem": true, + "techRecord_brakes_brakeCode": "123", + "techRecord_brakes_brakeCodeOriginal": "12412", + "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, + "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, + "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, + "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, + "techRecord_brakes_dataTrBrakeOne": "None", + "techRecord_brakes_dataTrBrakeThree": "None", + "techRecord_brakes_dataTrBrakeTwo": "None", + "techRecord_brakes_dtpNumber": null, + "techRecord_brakes_loadSensingValve": true, + "techRecord_brakes_retarderBrakeOne": "electric", + "techRecord_brakes_retarderBrakeTwo": "exhaust", + "techRecord_conversionRefNo": null, + "techRecord_createdAt": "2019-06-24T10:26:54.903Z", + "techRecord_createdByName": null, + "techRecord_dimensions_length": null, + "techRecord_dimensions_width": null, + "techRecord_drawbarCouplingFitted": null, + "techRecord_euroStandard": " ", + "techRecord_euVehicleCategory": null, + "techRecord_frontAxleTo5thWheelMax": null, + "techRecord_frontAxleTo5thWheelMin": null, + "techRecord_frontVehicleTo5thWheelCouplingMax": null, + "techRecord_frontVehicleTo5thWheelCouplingMin": null, + "techRecord_functionCode": null, + "techRecord_grossDesignWeight": null, + "techRecord_grossGbWeight": null, + "techRecord_grossKerbWeight": null, + "techRecord_grossLadenWeight": null, + "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", + "techRecord_make": null, + "techRecord_manufactureYear": null, + "techRecord_maxTrainDesignWeight": null, + "techRecord_maxTrainGbWeight": null, + "techRecord_model": null, + "techRecord_noOfAxles": 2, + "techRecord_notes": null, + "techRecord_ntaNumber": null, + "techRecord_reasonForCreation": null, + "techRecord_regnDate": null, + "techRecord_roadFriendly": false, + "techRecord_speedLimiterMrk": null, + "techRecord_statusCode": "current", + "techRecord_tachoExemptMrk": null, + "techRecord_trainDesignWeight": null, + "techRecord_trainGbWeight": null, + "techRecord_tyreUseCode": null, + "techRecord_vehicleClass_code": "v", + "techRecord_vehicleClass_description": null, + "techRecord_vehicleConfiguration": null, + "techRecord_vehicleSubclass_0": "a", + "techRecord_vehicleType": "trl", + "vin": "BPV001030" + } +] From 57759506ee45169bb98890916a78a01e7153a9e4 Mon Sep 17 00:00:00 2001 From: Daniel Searle Date: Mon, 23 Sep 2024 10:13:02 +0100 Subject: [PATCH 5/5] feat(CB2-13670): revert --- manifest.json | 2 +- ...echnical-records-v3-with-batch-plates.json | 113794 --------------- 2 files changed, 1 insertion(+), 113795 deletions(-) delete mode 100644 tests/resources/technical-records-v3-with-batch-plates.json diff --git a/manifest.json b/manifest.json index c1398b3d..6a5aac1d 100644 --- a/manifest.json +++ b/manifest.json @@ -8,7 +8,7 @@ "monorepo": true, "dynamo_tables": [ { - "flat-tech-records": "technical-records-v3-with-batch-plates.json" + "flat-tech-records": "technical-records-v3.json" } ] } diff --git a/tests/resources/technical-records-v3-with-batch-plates.json b/tests/resources/technical-records-v3-with-batch-plates.json deleted file mode 100644 index b9d384d3..00000000 --- a/tests/resources/technical-records-v3-with-batch-plates.json +++ /dev/null @@ -1,113794 +0,0 @@ -[ - { - "systemNumber": "XYZEP5JYOMM00020", - "createdTimestamp": "2019-06-24T10:26:56.903Z", - "partialVin": "400020", - "primaryVrm": "SJG3075", - "secondaryVrms": [ - "SVNS10" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "systemNumber": "XYZEP5JYOMM00020", - "createdTimestamp": "2019-06-22T10:26:55.903Z", - "partialVin": "400020", - "primaryVrm": "SJG3075", - "secondaryVrms": [ - "SVNS10" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "systemNumber": "XYZEP5JYOMM00020", - "createdTimestamp": "2019-06-21T10:26:50.903Z", - "partialVin": "400020", - "primaryVrm": "SJG3075", - "secondaryVrms": [ - "SVNS10" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": null, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": null, - "techRecord_axles_2_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "systemNumber": "XYZEP5JYOMM00020", - "createdTimestamp": "2019-06-19T10:26:51.903Z", - "partialVin": "400020", - "primaryVrm": "SJG3075", - "secondaryVrms": [ - "SVNS10" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": null, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": null, - "techRecord_axles_2_weights_gbWeight": null, - "techRecord_plates_1_extraInfo": "more info", - "techRecord_plates_0_extraInfo": "more info", - "techRecord_plates_1_info": "info", - "techRecord_plates_0_info": "info", - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "systemNumber": "XYZEP5JYOMM00020", - "createdTimestamp": "2019-06-16T10:26:52.903Z", - "partialVin": "400020", - "primaryVrm": "SJG3075", - "secondaryVrms": [ - "SVNS10" - ], - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.905Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "systemNumber": "XYZEP5JYOMM00020", - "createdTimestamp": "2019-06-15T10:26:53.903Z", - "partialVin": "400020", - "primaryVrm": "SJG3075", - "secondaryVrms": [ - "SVNS10" - ], - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.905Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "systemNumber": "XYZEP5JYOMM00020", - "createdTimestamp": "2019-06-19T10:26:54.903Z", - "partialVin": "400020", - "primaryVrm": "SJG3075", - "secondaryVrms": [ - "SVNS10" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": null, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": null, - "techRecord_axles_2_weights_gbWeight": null, - "techRecord_plates_1_extraInfo": "more info", - "techRecord_plates_0_extraInfo": "more info", - "techRecord_plates_1_info": "info", - "techRecord_plates_0_info": "info", - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT", - "techRecord_dimensions_axleSpacing_0_axle": "1-2", - "techRecord_dimensions_axleSpacing_0_value": "123", - "techRecord_dimensions_axleSpacing_1_axle": "2-3", - "techRecord_dimensions_axleSpacing_1_value": "321" - }, - { - "systemNumber": "11000162", - "createdTimestamp": "2023-09-13T13:06:51.221Z", - "partialVin": "123456", - "primaryVrm": "1100008Z", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "22 Company building", - "techRecord_applicantDetails_address2": "Country Lane", - "techRecord_applicantDetails_address3": "West Midlands", - "techRecord_applicantDetails_emailAddress": "company@email.com", - "techRecord_applicantDetails_name": "COMPANY NUMBER 1", - "techRecord_applicantDetails_postCode": "B1 444", - "techRecord_applicantDetails_postTown": "Birmingham", - "techRecord_applicantDetails_telephoneNumber": "0001111222200111", - "techRecord_approvalType": "NSSTA", - "techRecord_approvalTypeNumber": "123123", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 148, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": "", - "techRecord_axles_0_tyres_tyreCode": 450, - "techRecord_axles_0_tyres_tyreSize": "11/70-22.5", - "techRecord_axles_0_weights_designWeight": 123, - "techRecord_axles_0_weights_eecWeight": 123, - "techRecord_axles_0_weights_gbWeight": 123, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 151, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "", - "techRecord_axles_1_tyres_tyreCode": 450, - "techRecord_axles_1_tyres_tyreSize": "11/70-22.5", - "techRecord_axles_1_weights_designWeight": 123, - "techRecord_axles_1_weights_eecWeight": 456, - "techRecord_axles_1_weights_gbWeight": 123, - "techRecord_bodyType_code": "c", - "techRecord_bodyType_description": "refrigerated", - "techRecord_brakes_dtpNumber": "12444", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2023-09-13T13:06:51.221Z", - "techRecord_createdById": "962f584f-a9b8-4b39-a9d2-60789e185f26", - "techRecord_createdByName": "John Smith", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 123, - "techRecord_dimensions_length": 123, - "techRecord_dimensions_width": 123, - "techRecord_drawbarCouplingFitted": false, - "techRecord_emissionsLimit": 11, - "techRecord_euroStandard": "Euro 4", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": 123, - "techRecord_frontAxleTo5thWheelMin": 123, - "techRecord_frontAxleToRearAxle": 123, - "techRecord_frontVehicleTo5thWheelCouplingMax": 123, - "techRecord_frontVehicleTo5thWheelCouplingMin": 123, - "techRecord_fuelPropulsionSystem": "Diesel", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 123, - "techRecord_grossEecWeight": 123, - "techRecord_grossGbWeight": 123, - "techRecord_lastUpdatedAt": "2023-09-13T13:09:42.017Z", - "techRecord_lastUpdatedById": "962f584f-a9b8-4b39-a9d2-60789e185f26", - "techRecord_lastUpdatedByName": "John Smith", - "techRecord_make": "AVIA", - "techRecord_manufactureYear": 1995, - "techRecord_maxTrainDesignWeight": 231, - "techRecord_maxTrainEecWeight": 123, - "techRecord_maxTrainGbWeight": 213, - "techRecord_microfilm_microfilmDocumentType": "Tempo 100 Sp Ord", - "techRecord_microfilm_microfilmRollNumber": "12345", - "techRecord_microfilm_microfilmSerialNumber": "1234", - "techRecord_model": "Custom", - "techRecord_noOfAxles": 2, - "techRecord_notes": "hgv record complete", - "techRecord_ntaNumber": "123", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "hgv record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "1998-02-14", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 123, - "techRecord_trainEecWeight": 123, - "techRecord_trainGbWeight": 123, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "123", - "techRecord_variantVersionNumber": "123", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "articulated", - "techRecord_vehicleType": "hgv", - "vin": "123456" - }, - { - "systemNumber": "11000162", - "createdTimestamp": "2023-09-13T13:09:42.018Z", - "partialVin": "123456", - "primaryVrm": "1100008Z", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "22 Company building", - "techRecord_applicantDetails_address2": "Country Lane", - "techRecord_applicantDetails_address3": "West Midlands", - "techRecord_applicantDetails_emailAddress": "company@email.com", - "techRecord_applicantDetails_name": "COMPANY NUMBER 1", - "techRecord_applicantDetails_postCode": "B1 444", - "techRecord_applicantDetails_postTown": "Birmingham", - "techRecord_applicantDetails_telephoneNumber": "0001111222200111", - "techRecord_approvalType": "NSSTA", - "techRecord_approvalTypeNumber": "123123", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 148, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": "", - "techRecord_axles_0_tyres_tyreCode": 450, - "techRecord_axles_0_tyres_tyreSize": "11/70-22.5", - "techRecord_axles_0_weights_designWeight": 123, - "techRecord_axles_0_weights_eecWeight": 123, - "techRecord_axles_0_weights_gbWeight": 123, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 151, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "", - "techRecord_axles_1_tyres_tyreCode": 450, - "techRecord_axles_1_tyres_tyreSize": "11/70-22.5", - "techRecord_axles_1_weights_designWeight": 123, - "techRecord_axles_1_weights_eecWeight": 456, - "techRecord_axles_1_weights_gbWeight": 123, - "techRecord_bodyType_code": "c", - "techRecord_bodyType_description": "refrigerated", - "techRecord_brakes_dtpNumber": "12444", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2023-09-13T13:09:42.018Z", - "techRecord_createdById": "962f584f-a9b8-4b39-a9d2-60789e185f26", - "techRecord_createdByName": "John Smith", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 123, - "techRecord_dimensions_length": 123, - "techRecord_dimensions_width": 123, - "techRecord_drawbarCouplingFitted": false, - "techRecord_emissionsLimit": 11, - "techRecord_euroStandard": "Euro 4", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": 123, - "techRecord_frontAxleTo5thWheelMin": 123, - "techRecord_frontAxleToRearAxle": 123, - "techRecord_frontVehicleTo5thWheelCouplingMax": 123, - "techRecord_frontVehicleTo5thWheelCouplingMin": 123, - "techRecord_fuelPropulsionSystem": "Diesel", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 123, - "techRecord_grossEecWeight": 123, - "techRecord_grossGbWeight": 123, - "techRecord_make": "AVIA", - "techRecord_manufactureYear": 1995, - "techRecord_maxTrainDesignWeight": 231, - "techRecord_maxTrainEecWeight": 123, - "techRecord_maxTrainGbWeight": 213, - "techRecord_microfilm_microfilmDocumentType": "Tempo 100 Sp Ord", - "techRecord_microfilm_microfilmRollNumber": "12345", - "techRecord_microfilm_microfilmSerialNumber": "1234", - "techRecord_model": "Custom", - "techRecord_noOfAxles": 2, - "techRecord_notes": "hgv record complete", - "techRecord_ntaNumber": "123", - "techRecord_offRoad": false, - "techRecord_plates_0_plateIssueDate": "2023-09-13T13:10:44.563Z", - "techRecord_plates_0_plateIssuer": "John Smith", - "techRecord_plates_0_plateReasonForIssue": "Free replacement", - "techRecord_plates_0_plateSerialNumber": "1", - "techRecord_reasonForCreation": "promoting record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "1998-02-14", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 123, - "techRecord_trainEecWeight": 123, - "techRecord_trainGbWeight": 123, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "123", - "techRecord_variantVersionNumber": "123", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "articulated", - "techRecord_vehicleType": "hgv", - "vin": "123456" - }, - { - "systemNumber": "1101234", - "createdTimestamp": "2023-09-13T13:06:51.221Z", - "partialVin": "123456", - "primaryVrm": "1100008Z", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "22 Company building", - "techRecord_applicantDetails_address2": "Country Lane", - "techRecord_applicantDetails_address3": "West Midlands", - "techRecord_applicantDetails_emailAddress": "company@email.com", - "techRecord_applicantDetails_name": "COMPANY NUMBER 1", - "techRecord_applicantDetails_postCode": "B1 444", - "techRecord_applicantDetails_postTown": "Birmingham", - "techRecord_applicantDetails_telephoneNumber": "0001111222200111", - "techRecord_approvalType": "NSSTA", - "techRecord_approvalTypeNumber": "123123", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 148, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": "", - "techRecord_axles_0_tyres_tyreCode": 450, - "techRecord_axles_0_tyres_tyreSize": "11/70-22.5", - "techRecord_axles_0_weights_designWeight": 123, - "techRecord_axles_0_weights_eecWeight": 123, - "techRecord_axles_0_weights_gbWeight": 123, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 151, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "", - "techRecord_axles_1_tyres_tyreCode": 450, - "techRecord_axles_1_tyres_tyreSize": "11/70-22.5", - "techRecord_axles_1_weights_designWeight": 123, - "techRecord_axles_1_weights_eecWeight": 456, - "techRecord_axles_1_weights_gbWeight": 123, - "techRecord_bodyType_code": "c", - "techRecord_bodyType_description": "refrigerated", - "techRecord_brakes_dtpNumber": "12444", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2023-09-13T13:06:51.221Z", - "techRecord_createdById": "962f584f-a9b8-4b39-a9d2-60789e185f26", - "techRecord_createdByName": "John Smith", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 123, - "techRecord_dimensions_length": 123, - "techRecord_dimensions_width": 123, - "techRecord_drawbarCouplingFitted": false, - "techRecord_emissionsLimit": 11, - "techRecord_euroStandard": "Euro 4", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": 123, - "techRecord_frontAxleTo5thWheelMin": 123, - "techRecord_frontAxleToRearAxle": 123, - "techRecord_frontVehicleTo5thWheelCouplingMax": 123, - "techRecord_frontVehicleTo5thWheelCouplingMin": 123, - "techRecord_fuelPropulsionSystem": "Diesel", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 123, - "techRecord_grossEecWeight": 123, - "techRecord_grossGbWeight": 123, - "techRecord_lastUpdatedAt": "2023-09-13T13:09:42.017Z", - "techRecord_lastUpdatedById": "962f584f-a9b8-4b39-a9d2-60789e185f26", - "techRecord_lastUpdatedByName": "John Smith", - "techRecord_make": "AVIA", - "techRecord_manufactureYear": 1995, - "techRecord_maxTrainDesignWeight": 231, - "techRecord_maxTrainEecWeight": 123, - "techRecord_maxTrainGbWeight": 213, - "techRecord_microfilm_microfilmDocumentType": "Tempo 100 Sp Ord", - "techRecord_microfilm_microfilmRollNumber": "12345", - "techRecord_microfilm_microfilmSerialNumber": "1234", - "techRecord_model": "Custom", - "techRecord_noOfAxles": 2, - "techRecord_notes": "hgv record complete", - "techRecord_ntaNumber": "123", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "hgv record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "1998-02-14", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 123, - "techRecord_trainEecWeight": 123, - "techRecord_trainGbWeight": 123, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "123", - "techRecord_variantVersionNumber": "123", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "articulated", - "techRecord_vehicleType": "hgv", - "vin": "123456" - }, - { - "createdTimestamp": "2019-06-15T10:26:53.903Z", - "partialVin": "700060", - "primaryVrm": "WSG5075", - "secondaryVrms": [ - "BADS70" - ], - "systemNumber": "8AJWFM00066", - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euVehicleCategory": null, - "techRecord_euroStandard": " ", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2023-07-14T09:49:29.745Z", - "techRecord_lastUpdatedById": "123456", - "techRecord_lastUpdatedByName": "Testing Person", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Just a test for unarchiving", - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "createdTimestamp": "2019-06-15T10:36:12.903Z", - "partialVin": "700060", - "primaryVrm": "WSG5075", - "secondaryVrms": [ - "BADS70" - ], - "systemNumber": "8AJWFM00066", - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euVehicleCategory": null, - "techRecord_euroStandard": " ", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2023-07-14T09:49:29.745Z", - "techRecord_lastUpdatedById": "123456", - "techRecord_lastUpdatedByName": "Testing Person", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Just a test for unarchiving", - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "createdTimestamp": "2019-06-15T10:56:19.903Z", - "partialVin": "700060", - "primaryVrm": "WSG5075", - "secondaryVrms": [ - "BADS70" - ], - "systemNumber": "8AJWFM00066", - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T10:26:54.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euVehicleCategory": null, - "techRecord_euroStandard": " ", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2023-07-14T09:49:29.745Z", - "techRecord_lastUpdatedById": "123456", - "techRecord_lastUpdatedByName": "Testing Person", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Just a test for unarchiving", - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "createdTimestamp": "2019-06-22T12:00:00.904Z", - "partialVin": "700060", - "primaryVrm": "WSG5075", - "secondaryVrms": [ - "BADS70" - ], - "systemNumber": "RATMEM00066", - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-22T12:00:00.904Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euVehicleCategory": null, - "techRecord_euroStandard": " ", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2023-07-14T09:59:29.745Z", - "techRecord_lastUpdatedById": "123456", - "techRecord_lastUpdatedByName": "Testing Person", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Just a test for unarchiving", - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleType": "car", - "vin": "DP76UMK4DQLTOT" - }, - { - "systemNumber": "11100136", - "createdTimestamp": "2023-09-20T15:56:43.608Z", - "partialVin": "654645", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "21 TRL building", - "techRecord_applicantDetails_address2": "22 Street", - "techRecord_applicantDetails_address3": "Greater Manchester", - "techRecord_applicantDetails_emailAddress": "trl@company.so", - "techRecord_applicantDetails_name": "TRL company", - "techRecord_applicantDetails_postCode": "M1 1LL", - "techRecord_applicantDetails_postTown": "Manchester", - "techRecord_applicantDetails_telephoneNumber": "01632960655", - "techRecord_approvalType": "NSSTA", - "techRecord_approvalTypeNumber": "e11*NKS*11", - "techRecord_authIntoService_cocIssueDate": "2010-11-11", - "techRecord_authIntoService_dateAuthorised": "2010-11-11", - "techRecord_authIntoService_datePending": "2010-11-11", - "techRecord_authIntoService_dateReceived": "2010-11-11", - "techRecord_authIntoService_dateRejected": "2010-11-11", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 1, - "techRecord_axles_0_brakes_leverLength": 1, - "techRecord_axles_0_brakes_springBrakeParking": false, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 99, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "", - "techRecord_axles_0_tyres_tyreCode": 11, - "techRecord_axles_0_tyres_tyreSize": "670-13", - "techRecord_axles_0_weights_designWeight": 11, - "techRecord_axles_0_weights_eecWeight": 11, - "techRecord_axles_0_weights_gbWeight": 11, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 1, - "techRecord_axles_1_brakes_leverLength": 1, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 98, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "", - "techRecord_axles_1_tyres_tyreCode": 11, - "techRecord_axles_1_tyres_tyreSize": "670-13", - "techRecord_axles_1_weights_designWeight": 11, - "techRecord_axles_1_weights_eecWeight": 11, - "techRecord_axles_1_weights_gbWeight": 11, - "techRecord_bodyType_code": "y", - "techRecord_bodyType_description": "car transporter", - "techRecord_brakes_antilockBrakingSystem": false, - "techRecord_brakes_dtpNumber": "456453", - "techRecord_brakes_loadSensingValve": false, - "techRecord_centreOfRearmostAxleToRearOfTrl": 11, - "techRecord_conversionRefNo": "1111", - "techRecord_couplingCenterToRearAxleMax": 11, - "techRecord_couplingCenterToRearAxleMin": 11, - "techRecord_couplingCenterToRearTrlMax": 11, - "techRecord_couplingCenterToRearTrlMin": 11, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-09-20T15:56:43.608Z", - "techRecord_createdById": "b2bba13c-2a6a-467d-b58c-381582e53be7", - "techRecord_createdByName": "Robin Sterling", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 11, - "techRecord_dimensions_length": 11, - "techRecord_dimensions_width": 11, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2010-11-11", - "techRecord_frameDescription": "Tubular", - "techRecord_frontAxleToRearAxle": 11, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 11, - "techRecord_grossEecWeight": 11, - "techRecord_grossGbWeight": 11, - "techRecord_make": "AIR PRODUCTS", - "techRecord_manufacturerDetails_address1": "54 TRL building", - "techRecord_manufacturerDetails_address2": "11 Line Street", - "techRecord_manufacturerDetails_address3": "Essex", - "techRecord_manufacturerDetails_emailAddress": "manufacturer@trl.tv", - "techRecord_manufacturerDetails_faxNumber": "0161 999 8888", - "techRecord_manufacturerDetails_manufacturerNotes": "great trailers, small prices", - "techRecord_manufacturerDetails_name": "Manufacturer of Trailers", - "techRecord_manufacturerDetails_postCode": "CO4 2RR", - "techRecord_manufacturerDetails_postTown": "Colchester", - "techRecord_manufacturerDetails_telephoneNumber": "01632960655", - "techRecord_manufactureYear": 2010, - "techRecord_maxLoadOnCoupling": 11, - "techRecord_microfilm_microfilmDocumentType": "COIF Master", - "techRecord_microfilm_microfilmRollNumber": "11", - "techRecord_microfilm_microfilmSerialNumber": "11", - "techRecord_model": "Nitrogen", - "techRecord_noOfAxles": 2, - "techRecord_notes": "these are some notes on a trailer", - "techRecord_ntaNumber": "11111", - "techRecord_purchaserDetails_address1": "21 Trailer Road", - "techRecord_purchaserDetails_address2": "11 Park Street", - "techRecord_purchaserDetails_address3": "South Yorkshire", - "techRecord_purchaserDetails_emailAddress": "purchaser@cc.ss", - "techRecord_purchaserDetails_faxNumber": "01632960655", - "techRecord_purchaserDetails_name": "Purchaser Company", - "techRecord_purchaserDetails_postCode": "S10 2FF", - "techRecord_purchaserDetails_postTown": "Sheffield", - "techRecord_purchaserDetails_purchaserNotes": "buys many trailers", - "techRecord_purchaserDetails_telephoneNumber": "01632960655", - "techRecord_rearAxleToRearTrl": 11, - "techRecord_reasonForCreation": "trailer is being created", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2010-11-11", - "techRecord_roadFriendly": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "R", - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "11111", - "techRecord_variantVersionNumber": "1111", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "C530005", - "vin": "654645654645" - }, - { - "systemNumber": "10000555", - "createdTimestamp": "2024-02-05T08:26:15.659Z", - "partialVin": "GVTST1", - "primaryVrm": "HGVTST1", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-02-05T08:26:15.659Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST1" - }, - { - "systemNumber": "10001555", - "createdTimestamp": "2024-02-05T08:26:15.659Z", - "partialVin": "GVTST2", - "primaryVrm": "HGVTST2", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-02-05T08:26:15.659Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST2" - }, - { - "systemNumber": "10000559", - "createdTimestamp": "2024-02-05T08:51:54.172Z", - "partialVin": "GVTST3", - "primaryVrm": "HGVTST3", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "nobody@somewhere.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07257936528", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123456", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "123546", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2024-02-05T08:51:54.172Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 2600, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 2600, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 19, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "n1", - "techRecord_frontAxleTo5thWheelMax": 2600, - "techRecord_frontAxleTo5thWheelMin": 12000, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, - "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, - "techRecord_fuelPropulsionSystem": "Petrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_lastUpdatedAt": "2024-02-05T14:46:26.973Z", - "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", - "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainDesignWeight": 100, - "techRecord_maxTrainEecWeight": 100, - "techRecord_maxTrainGbWeight": 100, - "techRecord_model": "123456", - "techRecord_noOfAxles": 4, - "techRecord_notes": "Complete record for HGV", - "techRecord_ntaNumber": "123456", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 100, - "techRecord_trainEecWeight": 100, - "techRecord_trainGbWeight": 100, - "techRecord_tyreUseCode": "2R", - "techRecord_updateType": "adrUpdate", - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST3" - }, - { - "systemNumber": "10001559", - "createdTimestamp": "2024-02-05T08:51:54.172Z", - "partialVin": "GVTST4", - "primaryVrm": "HGVTST4", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "nobody@somewhere.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07257936528", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123456", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "123546", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2024-02-05T08:51:54.172Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 2600, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 2600, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 19, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "n1", - "techRecord_frontAxleTo5thWheelMax": 2600, - "techRecord_frontAxleTo5thWheelMin": 12000, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, - "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, - "techRecord_fuelPropulsionSystem": "Petrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_lastUpdatedAt": "2024-02-05T14:46:26.973Z", - "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", - "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainDesignWeight": 100, - "techRecord_maxTrainEecWeight": 100, - "techRecord_maxTrainGbWeight": 100, - "techRecord_model": "123456", - "techRecord_noOfAxles": 4, - "techRecord_notes": "Complete record for HGV", - "techRecord_ntaNumber": "123456", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 100, - "techRecord_trainEecWeight": 100, - "techRecord_trainGbWeight": 100, - "techRecord_tyreUseCode": "2R", - "techRecord_updateType": "adrUpdate", - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST4" - }, - { - "systemNumber": "10000569", - "createdTimestamp": "2024-02-05T10:18:35.977Z", - "partialVin": "GVTST5", - "primaryVrm": "HGVTST5", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "12345678", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1235467", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": 10, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07826836837", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "12345", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "123456", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2024-02-05T10:18:35.977Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 2600, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 2600, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 12, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "n1", - "techRecord_frontAxleTo5thWheelMax": 2600, - "techRecord_frontAxleTo5thWheelMin": 12000, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, - "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, - "techRecord_fuelPropulsionSystem": "Petrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainDesignWeight": 100, - "techRecord_maxTrainEecWeight": 100, - "techRecord_maxTrainGbWeight": 100, - "techRecord_model": "12345", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete HGV Record with ADR Details.", - "techRecord_ntaNumber": "12356", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 100, - "techRecord_trainEecWeight": 100, - "techRecord_trainGbWeight": 100, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST5" - }, - { - "systemNumber": "10000583", - "createdTimestamp": "2024-02-05T11:52:21.884Z", - "partialVin": "GVTST6", - "primaryVrm": "HGVTST6", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "12345", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-02-05T11:52:21.884Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_notes": "Skeleton HGV Semi-Trailer Tank Record with ADR Details", - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST6" - }, - { - "systemNumber": "10000586", - "createdTimestamp": "2024-02-05T12:18:29.778Z", - "partialVin": "GVTST7", - "primaryVrm": "HGVTST7", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Note", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": "1234567", - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": true, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "124356", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1243567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "12356", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "12345467", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": 12, - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123435", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "123", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2024-02-05T12:18:29.778Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 1200, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 2, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "n1", - "techRecord_frontAxleTo5thWheelMax": 12000, - "techRecord_frontAxleTo5thWheelMin": 12000, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMax": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, - "techRecord_fuelPropulsionSystem": "Petrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainDesignWeight": 100, - "techRecord_maxTrainEecWeight": 100, - "techRecord_maxTrainGbWeight": 100, - "techRecord_model": "12345", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete HGV Semi-Trailer Battery with ADR Details", - "techRecord_ntaNumber": "123456", - "techRecord_offRoad": true, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 100, - "techRecord_trainEecWeight": 100, - "techRecord_trainGbWeight": 100, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST7" - }, - { - "systemNumber": "10000589", - "createdTimestamp": "2024-02-05T12:51:10.634Z", - "partialVin": "GVTST8", - "primaryVrm": "GVTST8", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": null, - "techRecord_axles_2_tyres_fitmentCode": null, - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_tyreCode": null, - "techRecord_axles_2_tyres_tyreSize": null, - "techRecord_axles_2_weights_designWeight": null, - "techRecord_axles_2_weights_eecWeight": null, - "techRecord_axles_2_weights_gbWeight": null, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": null, - "techRecord_axles_3_tyres_fitmentCode": null, - "techRecord_axles_3_tyres_plyRating": null, - "techRecord_axles_3_tyres_tyreCode": null, - "techRecord_axles_3_tyres_tyreSize": null, - "techRecord_axles_3_weights_designWeight": null, - "techRecord_axles_3_weights_eecWeight": null, - "techRecord_axles_3_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-02-05T12:51:10.634Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": null, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Skeleton HGV Semi-Trailer Battery with ADR Details.", - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST8" - }, - { - "systemNumber": "10000556", - "createdTimestamp": "2024-02-05T08:27:13.558Z", - "partialVin": "GVTST1", - "primaryVrm": "LGVTST1", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T08:27:13.558Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": null, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": null, - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST1" - }, - { - "systemNumber": "10001556", - "createdTimestamp": "2024-02-05T08:27:13.558Z", - "partialVin": "GVTST2", - "primaryVrm": "LGVTST2", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T08:27:13.558Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": null, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": null, - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST2" - }, - { - "systemNumber": "10000560", - "createdTimestamp": "2024-02-05T08:53:17.809Z", - "partialVin": "GVTST3", - "primaryVrm": "LGVTST3", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07486276309", - "techRecord_createdAt": "2024-02-05T08:53:17.809Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Complete LGV Record", - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST3" - }, - { - "systemNumber": "10001560", - "createdTimestamp": "2024-02-05T08:53:17.809Z", - "partialVin": "GVTST4", - "primaryVrm": "LGVTST4", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07486276309", - "techRecord_createdAt": "2024-02-05T08:53:17.809Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Complete LGV Record", - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST4" - }, - { - "systemNumber": "10000573", - "createdTimestamp": "2024-02-05T10:27:21.754Z", - "partialVin": "GVTST5", - "primaryVrm": "LGVTST5", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": 10, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07827638498", - "techRecord_createdAt": "2024-02-05T10:27:21.754Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "A Complete LGV Record with ADR Details.", - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST5" - }, - { - "systemNumber": "10000584", - "createdTimestamp": "2024-02-05T11:56:05.666Z", - "partialVin": "GVTST6", - "primaryVrm": "LGVTST6", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123123", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T11:56:05.666Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": null, - "techRecord_lastUpdatedAt": "2024-02-05T15:09:22.135Z", - "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", - "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", - "techRecord_manufactureYear": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Skeleton LGV Semi-Trailer Tank with ADR Details", - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "current", - "techRecord_updateType": "adrUpdate", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST6" - }, - { - "systemNumber": "10000587", - "createdTimestamp": "2024-02-05T12:26:02.064Z", - "partialVin": "GVTST7", - "primaryVrm": "LGVTST7", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Note", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1243567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": 1234567, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T12:26:02.064Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "A Complete LGV Semi-Trailer Battery with ADR Details.", - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST7" - }, - { - "systemNumber": "10000590", - "createdTimestamp": "2024-02-05T13:16:26.603Z", - "partialVin": "GVTST8", - "primaryVrm": "LGVTST8", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "1234567", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T13:16:26.603Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": "A Skeleton LGV Semi-Trailer Battery with ADR Details.", - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST8" - }, - { - "systemNumber": "10000557", - "createdTimestamp": "2024-02-05T08:31:56.200Z", - "partialVin": "STTRL1", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T08:31:56.200Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST1", - "vin": "TRLTST1" - }, - { - "systemNumber": "10001557", - "createdTimestamp": "2024-02-05T08:31:56.200Z", - "partialVin": "RLTST2", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T08:31:56.200Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST2", - "vin": "TRLTST2" - }, - { - "systemNumber": "10000564", - "createdTimestamp": "2024-02-05T09:04:17.170Z", - "partialVin": "RLTST3", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07812736748", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123435", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 100, - "techRecord_axles_0_brakes_leverLength": 100, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 100, - "techRecord_axles_1_brakes_leverLength": 100, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 100, - "techRecord_axles_2_brakes_leverLength": 100, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_brakes_brakeActuator": 100, - "techRecord_axles_3_brakes_leverLength": 100, - "techRecord_axles_3_brakes_springBrakeParking": true, - "techRecord_axles_3_parkingBrakeMrk": true, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": false, - "techRecord_brakes_dtpNumber": "123435", - "techRecord_brakes_loadSensingValve": false, - "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, - "techRecord_conversionRefNo": "123456", - "techRecord_couplingCenterToRearAxleMax": 12000, - "techRecord_couplingCenterToRearAxleMin": 12000, - "techRecord_couplingCenterToRearTrlMax": 12000, - "techRecord_couplingCenterToRearTrlMin": 12000, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T09:04:17.170Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 2600, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 12000, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_euVehicleCategory": "m1", - "techRecord_firstUseDate": "2012-12-12", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "31807HM&G", - "techRecord_manufacturerDetails_address1": "Address", - "techRecord_manufacturerDetails_address2": "Address", - "techRecord_manufacturerDetails_address3": "County", - "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", - "techRecord_manufacturerDetails_faxNumber": "07916836746", - "techRecord_manufacturerDetails_manufacturerNotes": "Notes", - "techRecord_manufacturerDetails_name": "Name", - "techRecord_manufacturerDetails_postCode": "PSTCD", - "techRecord_manufacturerDetails_postTown": "Town", - "techRecord_manufacturerDetails_telephoneNumber": "07625836846", - "techRecord_manufactureYear": 2012, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": "124354", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete TRL Record.", - "techRecord_ntaNumber": "123456", - "techRecord_purchaserDetails_address1": "Address", - "techRecord_purchaserDetails_address2": "Address", - "techRecord_purchaserDetails_address3": "County", - "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", - "techRecord_purchaserDetails_faxNumber": "07652873647", - "techRecord_purchaserDetails_name": "Name", - "techRecord_purchaserDetails_postCode": "PSTCD", - "techRecord_purchaserDetails_postTown": "Town", - "techRecord_purchaserDetails_purchaserNotes": "Notes", - "techRecord_purchaserDetails_telephoneNumber": "07827635746", - "techRecord_rearAxleToRearTrl": 2600, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST3", - "vin": "TRLTST3" - }, - { - "systemNumber": "10001564", - "createdTimestamp": "2024-02-05T09:04:17.170Z", - "partialVin": "RLTST4", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07812736748", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123435", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 100, - "techRecord_axles_0_brakes_leverLength": 100, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 100, - "techRecord_axles_1_brakes_leverLength": 100, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 100, - "techRecord_axles_2_brakes_leverLength": 100, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_brakes_brakeActuator": 100, - "techRecord_axles_3_brakes_leverLength": 100, - "techRecord_axles_3_brakes_springBrakeParking": true, - "techRecord_axles_3_parkingBrakeMrk": true, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": false, - "techRecord_brakes_dtpNumber": "123435", - "techRecord_brakes_loadSensingValve": false, - "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, - "techRecord_conversionRefNo": "123456", - "techRecord_couplingCenterToRearAxleMax": 12000, - "techRecord_couplingCenterToRearAxleMin": 12000, - "techRecord_couplingCenterToRearTrlMax": 12000, - "techRecord_couplingCenterToRearTrlMin": 12000, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T09:04:17.170Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 2600, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 12000, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_euVehicleCategory": "m1", - "techRecord_firstUseDate": "2012-12-12", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "31807HM&G", - "techRecord_manufacturerDetails_address1": "Address", - "techRecord_manufacturerDetails_address2": "Address", - "techRecord_manufacturerDetails_address3": "County", - "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", - "techRecord_manufacturerDetails_faxNumber": "07916836746", - "techRecord_manufacturerDetails_manufacturerNotes": "Notes", - "techRecord_manufacturerDetails_name": "Name", - "techRecord_manufacturerDetails_postCode": "PSTCD", - "techRecord_manufacturerDetails_postTown": "Town", - "techRecord_manufacturerDetails_telephoneNumber": "07625836846", - "techRecord_manufactureYear": 2012, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": "124354", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete TRL Record.", - "techRecord_ntaNumber": "123456", - "techRecord_purchaserDetails_address1": "Address", - "techRecord_purchaserDetails_address2": "Address", - "techRecord_purchaserDetails_address3": "County", - "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", - "techRecord_purchaserDetails_faxNumber": "07652873647", - "techRecord_purchaserDetails_name": "Name", - "techRecord_purchaserDetails_postCode": "PSTCD", - "techRecord_purchaserDetails_postTown": "Town", - "techRecord_purchaserDetails_purchaserNotes": "Notes", - "techRecord_purchaserDetails_telephoneNumber": "07827635746", - "techRecord_rearAxleToRearTrl": 2600, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST4", - "vin": "TRLTST4" - }, - { - "systemNumber": "10000575", - "createdTimestamp": "2024-02-05T10:41:18.513Z", - "partialVin": "RLTST5", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", - "techRecord_adrDetails_adrTypeApprovalNo": "1234567", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": 10, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07625938746", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1234567", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 100, - "techRecord_axles_0_brakes_leverLength": 100, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 100, - "techRecord_axles_1_brakes_leverLength": 100, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 100, - "techRecord_axles_2_brakes_leverLength": 100, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_brakes_brakeActuator": 100, - "techRecord_axles_3_brakes_leverLength": 100, - "techRecord_axles_3_brakes_springBrakeParking": true, - "techRecord_axles_3_parkingBrakeMrk": true, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "123456", - "techRecord_brakes_loadSensingValve": true, - "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, - "techRecord_conversionRefNo": "123546", - "techRecord_couplingCenterToRearAxleMax": 12000, - "techRecord_couplingCenterToRearAxleMin": 12000, - "techRecord_couplingCenterToRearTrlMax": 12000, - "techRecord_couplingCenterToRearTrlMin": 12000, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T10:41:18.513Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 2600, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 12000, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_euVehicleCategory": "m1", - "techRecord_firstUseDate": "2012-12-12", - "techRecord_frameDescription": "Channel section", - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_lastUpdatedAt": "2024-02-05T15:32:15.140Z", - "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", - "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", - "techRecord_make": "31807HM&G", - "techRecord_manufacturerDetails_address1": "Address", - "techRecord_manufacturerDetails_address2": "Address", - "techRecord_manufacturerDetails_address3": "County", - "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", - "techRecord_manufacturerDetails_faxNumber": "07825735736", - "techRecord_manufacturerDetails_manufacturerNotes": "Manufacturer Notes", - "techRecord_manufacturerDetails_name": "Name", - "techRecord_manufacturerDetails_postCode": "PSTCD", - "techRecord_manufacturerDetails_postTown": "Town", - "techRecord_manufacturerDetails_telephoneNumber": "07826354726", - "techRecord_manufactureYear": 2012, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": "123456", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete TRL Record with ADR Details.", - "techRecord_ntaNumber": "1234567", - "techRecord_purchaserDetails_address1": "Address", - "techRecord_purchaserDetails_address2": "Address", - "techRecord_purchaserDetails_address3": "County", - "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", - "techRecord_purchaserDetails_faxNumber": "07625384657", - "techRecord_purchaserDetails_name": "Name", - "techRecord_purchaserDetails_postCode": "PSTCD", - "techRecord_purchaserDetails_postTown": "Town", - "techRecord_purchaserDetails_purchaserNotes": "Purchaser Notes", - "techRecord_purchaserDetails_telephoneNumber": "07087625364", - "techRecord_rearAxleToRearTrl": 2600, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": "2R", - "techRecord_updateType": "adrUpdate", - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST5", - "vin": "TRLTST5" - }, - { - "systemNumber": "10000585", - "createdTimestamp": "2024-02-05T12:01:26.149Z", - "partialVin": "RLTST6", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123123", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T12:01:26.149Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": null, - "techRecord_notes": "A Skeleton TRL Semi-Trailer Tank Record with ADR Details", - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST6", - "vin": "TRLTST6" - }, - { - "systemNumber": "10000588", - "createdTimestamp": "2024-02-05T12:42:03.346Z", - "partialVin": "RLTST7", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": "1243567", - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": true, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": 12, - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123435", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 100, - "techRecord_axles_0_brakes_leverLength": 100, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 100, - "techRecord_axles_1_brakes_leverLength": 100, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 100, - "techRecord_axles_2_brakes_leverLength": 100, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_brakes_brakeActuator": 100, - "techRecord_axles_3_brakes_leverLength": 100, - "techRecord_axles_3_brakes_springBrakeParking": true, - "techRecord_axles_3_parkingBrakeMrk": true, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "124356", - "techRecord_brakes_loadSensingValve": true, - "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, - "techRecord_conversionRefNo": "12343546", - "techRecord_couplingCenterToRearAxleMax": 12000, - "techRecord_couplingCenterToRearAxleMin": 12000, - "techRecord_couplingCenterToRearTrlMax": 12000, - "techRecord_couplingCenterToRearTrlMin": 12000, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T12:42:03.346Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 12000, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_euVehicleCategory": "m1", - "techRecord_firstUseDate": "2012-12-12", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "31807HM&G", - "techRecord_manufacturerDetails_address1": "Address", - "techRecord_manufacturerDetails_address2": "Address", - "techRecord_manufacturerDetails_address3": "County", - "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", - "techRecord_manufacturerDetails_faxNumber": "07816527635", - "techRecord_manufacturerDetails_manufacturerNotes": "Manufacturer Note", - "techRecord_manufacturerDetails_name": "Name", - "techRecord_manufacturerDetails_postCode": "PSTCD", - "techRecord_manufacturerDetails_postTown": "Town", - "techRecord_manufacturerDetails_telephoneNumber": "07265837645", - "techRecord_manufactureYear": 2012, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": "12345", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete TRL Semi-Trailer Battery with ADR Details", - "techRecord_ntaNumber": "123456", - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": 12000, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "S", - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST7", - "vin": "TRLTST7" - }, - { - "systemNumber": "10000591", - "createdTimestamp": "2024-02-05T13:51:35.260Z", - "partialVin": "STTRL8", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": null, - "techRecord_axles_2_tyres_fitmentCode": null, - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_tyreCode": null, - "techRecord_axles_2_tyres_tyreSize": null, - "techRecord_axles_2_weights_designWeight": null, - "techRecord_axles_2_weights_eecWeight": null, - "techRecord_axles_2_weights_gbWeight": null, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": null, - "techRecord_axles_3_tyres_fitmentCode": null, - "techRecord_axles_3_tyres_plyRating": null, - "techRecord_axles_3_tyres_tyreCode": null, - "techRecord_axles_3_tyres_tyreSize": null, - "techRecord_axles_3_weights_designWeight": null, - "techRecord_axles_3_weights_eecWeight": null, - "techRecord_axles_3_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T13:51:35.260Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": null, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Skeleton TRL Semi-Trailer Battery Record with ADR Details.", - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST8", - "vin": "TRLTST8" - }, - { - "systemNumber": "10000598", - "createdTimestamp": "2024-02-05T16:50:16.831Z", - "partialVin": "PACAR1", - "primaryVrm": "PACAR1", - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07926874837", - "techRecord_createdAt": "2024-02-05T16:50:16.831Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "A note.", - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "car", - "vin": "PACAR1" - }, - { - "systemNumber": "10000643", - "createdTimestamp": "2024-03-21T14:12:32.110Z", - "partialVin": "SVTST1", - "primaryVrm": "PSVTST1", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_bodyMake": "NOT KNOWN", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "00000", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "NOT KNOWN", - "techRecord_chassisModel": "NOT KNOWN", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-03-21T14:12:32.110Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": "Redacted", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_dispensations": "", - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": 65, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": null, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "rfc", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": null, - "techRecord_remarks": "", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": null, - "techRecord_seatsUpperDeck": null, - "techRecord_speedLimiterMrk": true, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": null, - "techRecord_vehicleType": "psv", - "vin": "PSVTST1" - }, - { - "systemNumber": "10000644", - "createdTimestamp": "2024-03-21T14:17:45.399Z", - "partialVin": "SVTST2", - "primaryVrm": "PSVTST2", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_bodyMake": "NOT KNOWN", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "00000", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "NOT KNOWN", - "techRecord_chassisModel": "NOT KNOWN", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-03-21T14:17:45.399Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": "Redacted", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": null, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "rfc", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": null, - "techRecord_seatsUpperDeck": null, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": null, - "techRecord_vehicleType": "psv", - "vin": "PSVTST2" - }, - { - "systemNumber": "10000661", - "createdTimestamp": "2024-03-21T14:23:48.580Z", - "partialVin": "SVTST3", - "primaryVrm": "PSVTST3", - "techRecord_alterationMarker": true, - "techRecord_applicationId": "", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123456", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_0_weights_kerbWeight": 100, - "techRecord_axles_0_weights_ladenWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 101, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "8", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 100, - "techRecord_axles_1_tyres_tyreSize": "175-16C", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_1_weights_kerbWeight": 100, - "techRecord_axles_1_weights_ladenWeight": 100, - "techRecord_bodyMake": "NOT KNOWN", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "025111", - "techRecord_brakes_brakeCode": "025111", - "techRecord_brakes_brakeCodeOriginal": "111", - "techRecord_brakes_dataTrBrakeOne": "2 AXLE NO SPLIT", - "techRecord_brakes_dataTrBrakeThree": "AXLE 1", - "techRecord_brakes_dataTrBrakeTwo": "PARKING BRAKE ON AXLE 1", - "techRecord_brakes_dtpNumber": "00000", - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "electric", - "techRecord_chassisMake": "NOT KNOWN", - "techRecord_chassisModel": "NOT KNOWN", - "techRecord_coifCertifierName": "123456", - "techRecord_coifDate": "2012-12-12", - "techRecord_coifSerialNumber": "123456", - "techRecord_conversionRefNo": "12345", - "techRecord_createdAt": "2024-03-21T14:23:48.580Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": "Redacted", - "techRecord_dda_certificateIssued": true, - "techRecord_dda_ddaNotes": "dda note", - "techRecord_dda_ddaSchedules": "dda schedule", - "techRecord_dda_minEmergencyExits": 0, - "techRecord_dda_outswing": "outswing", - "techRecord_dda_seatbeltsFitted": 2, - "techRecord_dda_wheelchairCapacity": 12, - "techRecord_dda_wheelchairFittings": "wheelchair fittings", - "techRecord_dda_wheelchairLiftInformation": "info", - "techRecord_dda_wheelchairLiftPresent": false, - "techRecord_dda_wheelchairRampInformation": "info", - "techRecord_dda_wheelchairRampPresent": false, - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_height": 100, - "techRecord_dimensions_length": 100, - "techRecord_dimensions_width": 100, - "techRecord_dispensations": "dispensation", - "techRecord_emissionsLimit": 12, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleToRearAxle": 100, - "techRecord_fuelPropulsionSystem": "Diesel", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_grossKerbWeight": 100, - "techRecord_grossLadenWeight": 2505, - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainGbWeight": 100, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "12435", - "techRecord_microfilm_microfilmSerialNumber": "1234", - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "123456", - "techRecord_numberOfSeatbelts": "12", - "techRecord_reasonForCreation": "rfc", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_remarks": "note", - "techRecord_seatbeltInstallationApprovalDate": "2012-12-12", - "techRecord_seatsLowerDeck": 12, - "techRecord_seatsUpperDeck": 12, - "techRecord_speedLimiterMrk": true, - "techRecord_speedRestriction": 99, - "techRecord_standingCapacity": 12, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 100, - "techRecord_unladenWeight": 100, - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv", - "vin": "PSVTST3" - }, - { - "systemNumber": "10000662", - "createdTimestamp": "2024-03-21T14:23:48.580Z", - "partialVin": "SVTST4", - "primaryVrm": "PSVTST4", - "techRecord_alterationMarker": true, - "techRecord_applicationId": "", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123456", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_0_weights_kerbWeight": 100, - "techRecord_axles_0_weights_ladenWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 101, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "8", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 100, - "techRecord_axles_1_tyres_tyreSize": "175-16C", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_1_weights_kerbWeight": 100, - "techRecord_axles_1_weights_ladenWeight": 100, - "techRecord_bodyMake": "NOT KNOWN", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "025111", - "techRecord_brakes_brakeCode": "025111", - "techRecord_brakes_brakeCodeOriginal": "111", - "techRecord_brakes_dataTrBrakeOne": "2 AXLE NO SPLIT", - "techRecord_brakes_dataTrBrakeThree": "AXLE 1", - "techRecord_brakes_dataTrBrakeTwo": "PARKING BRAKE ON AXLE 1", - "techRecord_brakes_dtpNumber": "00000", - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "electric", - "techRecord_chassisMake": "NOT KNOWN", - "techRecord_chassisModel": "NOT KNOWN", - "techRecord_coifCertifierName": "123456", - "techRecord_coifDate": "2012-12-12", - "techRecord_coifSerialNumber": "123456", - "techRecord_conversionRefNo": "12345", - "techRecord_createdAt": "2024-03-21T14:23:48.580Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": "Redacted", - "techRecord_dda_certificateIssued": true, - "techRecord_dda_ddaNotes": "dda note", - "techRecord_dda_ddaSchedules": "dda schedule", - "techRecord_dda_minEmergencyExits": 0, - "techRecord_dda_outswing": "outswing", - "techRecord_dda_seatbeltsFitted": 2, - "techRecord_dda_wheelchairCapacity": 12, - "techRecord_dda_wheelchairFittings": "wheelchair fittings", - "techRecord_dda_wheelchairLiftInformation": "info", - "techRecord_dda_wheelchairLiftPresent": false, - "techRecord_dda_wheelchairRampInformation": "info", - "techRecord_dda_wheelchairRampPresent": false, - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_height": 100, - "techRecord_dimensions_length": 100, - "techRecord_dimensions_width": 100, - "techRecord_dispensations": "dispensation", - "techRecord_emissionsLimit": 12, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleToRearAxle": 100, - "techRecord_fuelPropulsionSystem": "Diesel", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_grossKerbWeight": 100, - "techRecord_grossLadenWeight": 2505, - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainGbWeight": 100, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "12435", - "techRecord_microfilm_microfilmSerialNumber": "1234", - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "123456", - "techRecord_numberOfSeatbelts": "12", - "techRecord_reasonForCreation": "rfc", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_remarks": "note", - "techRecord_seatbeltInstallationApprovalDate": "2012-12-12", - "techRecord_seatsLowerDeck": 12, - "techRecord_seatsUpperDeck": 12, - "techRecord_speedLimiterMrk": true, - "techRecord_speedRestriction": 99, - "techRecord_standingCapacity": 12, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 100, - "techRecord_unladenWeight": 100, - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv", - "vin": "PSVTST4" - }, - { - "systemNumber": "10000361", - "createdTimestamp": "2024-03-22T09:26:56.754Z", - "partialVin": "SVTST5", - "primaryVrm": "PSVTST5", - "techRecord_alterationMarker": true, - "techRecord_applicationId": "", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1235467", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_0_weights_kerbWeight": 100, - "techRecord_axles_0_weights_ladenWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 99, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "8", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 100, - "techRecord_axles_1_tyres_tyreSize": "175-16C", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_1_weights_kerbWeight": 100, - "techRecord_axles_1_weights_ladenWeight": 100, - "techRecord_bodyMake": "NOT KNOWN", - "techRecord_bodyModel": "model", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "025111", - "techRecord_brakes_brakeCode": "025111", - "techRecord_brakes_brakeCodeOriginal": "111", - "techRecord_brakes_dataTrBrakeOne": "2 AXLE NO SPLIT", - "techRecord_brakes_dataTrBrakeThree": "AXLE 1", - "techRecord_brakes_dataTrBrakeTwo": "PARKING BRAKE ON AXLE 1", - "techRecord_brakes_dtpNumber": "00000", - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "electric", - "techRecord_chassisMake": "NOT KNOWN", - "techRecord_chassisModel": "NOT KNOWN", - "techRecord_coifCertifierName": "123456", - "techRecord_coifDate": "2012-12-12", - "techRecord_coifSerialNumber": "123456", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2024-03-22T09:26:56.754Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": "Redacted", - "techRecord_dda_certificateIssued": false, - "techRecord_dda_ddaNotes": "N/A", - "techRecord_dda_ddaSchedules": "N/A", - "techRecord_dda_minEmergencyExits": 0, - "techRecord_dda_outswing": "N/A", - "techRecord_dda_seatbeltsFitted": 0, - "techRecord_dda_wheelchairCapacity": 0, - "techRecord_dda_wheelchairFittings": "N/A", - "techRecord_dda_wheelchairLiftInformation": "N/A", - "techRecord_dda_wheelchairLiftPresent": false, - "techRecord_dda_wheelchairRampInformation": "N/A", - "techRecord_dda_wheelchairRampPresent": false, - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_height": 100, - "techRecord_dimensions_length": 100, - "techRecord_dimensions_width": 100, - "techRecord_dispensations": "dispensation", - "techRecord_emissionsLimit": 12, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleToRearAxle": 100, - "techRecord_fuelPropulsionSystem": "Diesel", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_grossKerbWeight": 100, - "techRecord_grossLadenWeight": 2505, - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainGbWeight": 100, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "12346", - "techRecord_microfilm_microfilmSerialNumber": "1423", - "techRecord_modelLiteral": "literal", - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "1257", - "techRecord_numberOfSeatbelts": "12", - "techRecord_reasonForCreation": "rfc", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_remarks": "note", - "techRecord_seatbeltInstallationApprovalDate": "2012-12-12", - "techRecord_seatsLowerDeck": 12, - "techRecord_seatsUpperDeck": 12, - "techRecord_speedLimiterMrk": true, - "techRecord_speedRestriction": 99, - "techRecord_standingCapacity": 12, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 100, - "techRecord_unladenWeight": 100, - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv", - "vin": "PSVTST5" - }, - { - "systemNumber": "10000362", - "createdTimestamp": "2024-03-22T09:26:56.754Z", - "partialVin": "SVTST6", - "primaryVrm": "PSVTST6", - "techRecord_alterationMarker": true, - "techRecord_applicationId": "", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1235467", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_0_weights_kerbWeight": 100, - "techRecord_axles_0_weights_ladenWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 99, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "8", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 100, - "techRecord_axles_1_tyres_tyreSize": "175-16C", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_1_weights_kerbWeight": 100, - "techRecord_axles_1_weights_ladenWeight": 100, - "techRecord_bodyMake": "NOT KNOWN", - "techRecord_bodyModel": "model", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "025111", - "techRecord_brakes_brakeCode": "025111", - "techRecord_brakes_brakeCodeOriginal": "111", - "techRecord_brakes_dataTrBrakeOne": "2 AXLE NO SPLIT", - "techRecord_brakes_dataTrBrakeThree": "AXLE 1", - "techRecord_brakes_dataTrBrakeTwo": "PARKING BRAKE ON AXLE 1", - "techRecord_brakes_dtpNumber": "00000", - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "electric", - "techRecord_chassisMake": "NOT KNOWN", - "techRecord_chassisModel": "NOT KNOWN", - "techRecord_coifCertifierName": "123456", - "techRecord_coifDate": "2012-12-12", - "techRecord_coifSerialNumber": "123456", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2024-03-22T09:26:56.754Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": "Redacted", - "techRecord_dda_certificateIssued": false, - "techRecord_dda_ddaNotes": "N/A", - "techRecord_dda_ddaSchedules": "N/A", - "techRecord_dda_minEmergencyExits": 0, - "techRecord_dda_outswing": "N/A", - "techRecord_dda_seatbeltsFitted": 0, - "techRecord_dda_wheelchairCapacity": 0, - "techRecord_dda_wheelchairFittings": "N/A", - "techRecord_dda_wheelchairLiftInformation": "N/A", - "techRecord_dda_wheelchairLiftPresent": false, - "techRecord_dda_wheelchairRampInformation": "N/A", - "techRecord_dda_wheelchairRampPresent": false, - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_height": 100, - "techRecord_dimensions_length": 100, - "techRecord_dimensions_width": 100, - "techRecord_dispensations": "dispensation", - "techRecord_emissionsLimit": 12, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleToRearAxle": 100, - "techRecord_fuelPropulsionSystem": "Diesel", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_grossKerbWeight": 100, - "techRecord_grossLadenWeight": 2505, - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainGbWeight": 100, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "12346", - "techRecord_microfilm_microfilmSerialNumber": "1423", - "techRecord_modelLiteral": "literal", - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "1257", - "techRecord_numberOfSeatbelts": "12", - "techRecord_reasonForCreation": "rfc", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_remarks": "note", - "techRecord_seatbeltInstallationApprovalDate": "2012-12-12", - "techRecord_seatsLowerDeck": 12, - "techRecord_seatsUpperDeck": 12, - "techRecord_speedLimiterMrk": true, - "techRecord_speedRestriction": 99, - "techRecord_standingCapacity": 12, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 100, - "techRecord_unladenWeight": 100, - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv", - "vin": "PSVTST6" - }, - { - "systemNumber": "VTA01QA", - "createdTimestamp": "2024-03-25T17:14:25.346Z", - "vin": "AUTOQAPSV00000001", - "partialVin": "000001", - "primaryVrm": "QA01PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA01QA", - "createdTimestamp": "2024-03-26T17:14:16.346Z", - "vin": "AUTOQAPSV00000001", - "partialVin": "000001", - "primaryVrm": "QA01PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": null, - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA02QA", - "createdTimestamp": "2024-03-25T17:14:26.346Z", - "vin": "AUTOQAPSV00000002", - "partialVin": "000002", - "primaryVrm": "QA02PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632, 01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12: 24: 38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21: 43: 03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA02QA", - "createdTimestamp": "2024-03-26T17:14:17.346Z", - "vin": "AUTOQAPSV00000002", - "partialVin": "000002", - "primaryVrm": "QA02PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632, 01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21: 43: 03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": null, - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA03QA", - "createdTimestamp": "2024-03-25T17:14:27.346Z", - "vin": "AUTOQAPSV00000003", - "partialVin": "000003", - "primaryVrm": "QA03PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA03QA", - "createdTimestamp": "2024-03-26T17:14:18.346Z", - "vin": "AUTOQAPSV00000003", - "partialVin": "000003", - "primaryVrm": "QA03PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": null, - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA04QA", - "createdTimestamp": "2024-03-25T17:14:28.346Z", - "vin": "AUTOQAPSV00000004", - "partialVin": "000004", - "primaryVrm": "QA04PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA04QA", - "createdTimestamp": "2024-03-26T17:14:19.346Z", - "vin": "AUTOQAPSV00000004", - "partialVin": "000004", - "primaryVrm": "QA04PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": null, - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA05QA", - "createdTimestamp": "2024-03-25T17:14:29.346Z", - "vin": "AUTOQAPSV00000005", - "partialVin": "000005", - "primaryVrm": "QA05PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA05QA", - "createdTimestamp": "2024-03-26T17:14:20.346Z", - "vin": "AUTOQAPSV00000005", - "partialVin": "000005", - "primaryVrm": "QA05PSV", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": "m2", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000001", - "createdTimestamp": "2024-03-25T17:14:37.348Z", - "vin": "AUTOQAPSV00000006", - "partialVin": "000006", - "primaryVrm": "QA06PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 152, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5000, - "techRecord_axles_0_weights_ladenWeight": 6500, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 148, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 11500, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 7000, - "techRecord_axles_1_weights_ladenWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 152, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_speedCategorySymbol": null, - "techRecord_axles_2_tyres_tyreCode": 456, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 7100, - "techRecord_axles_2_weights_gbWeight": 7100, - "techRecord_axles_2_weights_kerbWeight": 5000, - "techRecord_axles_2_weights_ladenWeight": 6500, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": null, - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "00B06", - "techRecord_brakes_brakeCode": "00B06", - "techRecord_brakes_brakeCodeOriginal": "B06", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "3 AXLE SPLIT (AXLE 1 / AXLES 2 + 3 )", - "techRecord_brakes_dataTrBrakeThree": "AXLES 2 + 3", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "011405", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "SCANIA", - "techRecord_chassisModel": "K 410 EB6x2*4LI", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T09:52:11.641Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m3", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 25700, - "techRecord_grossGbWeight": 25700, - "techRecord_grossKerbWeight": 17000, - "techRecord_grossLadenWeight": 21000, - "techRecord_historicPrimaryVrm": "QA06PSV", - "techRecord_lastUpdatedAt": "2023-04-21T11:17:17.394Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 3, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-20", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 49, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000001", - "createdTimestamp": "2024-03-26T17:14:11.348Z", - "vin": "AUTOQAPSV00000006", - "partialVin": "000006", - "primaryVrm": "QA06PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 152, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5000, - "techRecord_axles_0_weights_ladenWeight": 6500, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 148, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 11500, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 7000, - "techRecord_axles_1_weights_ladenWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 152, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_speedCategorySymbol": null, - "techRecord_axles_2_tyres_tyreCode": 456, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 7100, - "techRecord_axles_2_weights_gbWeight": 7100, - "techRecord_axles_2_weights_kerbWeight": 5000, - "techRecord_axles_2_weights_ladenWeight": 6500, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": null, - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "00B06", - "techRecord_brakes_brakeCode": "00B06", - "techRecord_brakes_brakeCodeOriginal": "B06", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "3 AXLE SPLIT (AXLE 1 / AXLES 2 + 3 )", - "techRecord_brakes_dataTrBrakeThree": "AXLES 2 + 3", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "011405", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "SCANIA", - "techRecord_chassisModel": "K 410 EB6x2*4LI", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T11:17:17.394Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m3", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 25700, - "techRecord_grossGbWeight": 25700, - "techRecord_grossKerbWeight": 17000, - "techRecord_grossLadenWeight": 21000, - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 3, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "QA Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-20", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 49, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000002", - "createdTimestamp": "2024-03-25T17:14:10.349Z", - "vin": "AUTOQAPSV00000007", - "partialVin": "000007", - "primaryVrm": "QA07PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 156, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 7500, - "techRecord_axles_0_weights_gbWeight": 7500, - "techRecord_axles_0_weights_kerbWeight": 5000, - "techRecord_axles_0_weights_ladenWeight": 6500, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 150, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 12000, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 7000, - "techRecord_axles_1_weights_ladenWeight": 8500, - "techRecord_bodyMake": "IRIZAR", - "techRecord_bodyModel": null, - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "00202", - "techRecord_brakes_brakeCode": "00202", - "techRecord_brakes_brakeCodeOriginal": "202", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", - "techRecord_brakes_dataTrBrakeThree": "AXLE 2", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "011300", - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "IRIZAR", - "techRecord_chassisModel": "I8 14.98", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T11:46:17.980Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m3", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 19500, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 12000, - "techRecord_grossLadenWeight": 15000, - "techRecord_historicPrimaryVrm": "QA07PSV", - "techRecord_lastUpdatedAt": "2023-04-21T11:47:03.500Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-01", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 51, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000002", - "createdTimestamp": "2024-03-26T17:14:10.349Z", - "vin": "AUTOQAPSV00000007", - "partialVin": "000007", - "primaryVrm": "QA07PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 156, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 7500, - "techRecord_axles_0_weights_gbWeight": 7500, - "techRecord_axles_0_weights_kerbWeight": 5000, - "techRecord_axles_0_weights_ladenWeight": 6500, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 150, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 12000, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 7000, - "techRecord_axles_1_weights_ladenWeight": 8500, - "techRecord_bodyMake": "IRIZAR", - "techRecord_bodyModel": null, - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "00202", - "techRecord_brakes_brakeCode": "00202", - "techRecord_brakes_brakeCodeOriginal": "202", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", - "techRecord_brakes_dataTrBrakeThree": "AXLE 2", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "011300", - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "IRIZAR", - "techRecord_chassisModel": "I8 14.98", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T11:47:03.500Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m3", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 19500, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 12000, - "techRecord_grossLadenWeight": 15000, - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA QA Automation Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-01", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 51, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000003", - "createdTimestamp": "2024-03-25T17:14:11.349Z", - "vin": "AUTOQAPSV00000008", - "partialVin": "000008", - "primaryVrm": "QA08PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 112, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 816, - "techRecord_axles_0_tyres_tyreSize": "225-15", - "techRecord_axles_0_weights_designWeight": 1750, - "techRecord_axles_0_weights_gbWeight": 1750, - "techRecord_axles_0_weights_kerbWeight": 1100, - "techRecord_axles_0_weights_ladenWeight": 1300, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 110, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 816, - "techRecord_axles_1_tyres_tyreSize": "225-15", - "techRecord_axles_1_weights_designWeight": 2500, - "techRecord_axles_1_weights_gbWeight": 2500, - "techRecord_axles_1_weights_kerbWeight": 2000, - "techRecord_axles_1_weights_ladenWeight": 2300, - "techRecord_bodyMake": "TBC CONVERSION", - "techRecord_bodyModel": null, - "techRecord_bodyType_code": "m", - "techRecord_bodyType_description": "mini bus", - "techRecord_brakeCode": "00202", - "techRecord_brakes_brakeCode": "00202", - "techRecord_brakes_brakeCodeOriginal": "202", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", - "techRecord_brakes_dataTrBrakeThree": "AXLE 2", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "011028", - "techRecord_brakes_retarderBrakeOne": "none", - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "MERCEDES", - "techRecord_chassisModel": "516D", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T12:34:34.722Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m2", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 4250, - "techRecord_grossGbWeight": 4250, - "techRecord_grossKerbWeight": 3100, - "techRecord_grossLadenWeight": 3600, - "techRecord_historicPrimaryVrm": "QA08PSV", - "techRecord_lastUpdatedAt": "2023-04-21T12:35:13.721Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-20", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 15, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000003", - "createdTimestamp": "2024-03-26T17:14:11.349Z", - "vin": "AUTOQAPSV00000008", - "partialVin": "000008", - "primaryVrm": "QA08PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 112, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 816, - "techRecord_axles_0_tyres_tyreSize": "225-15", - "techRecord_axles_0_weights_designWeight": 1750, - "techRecord_axles_0_weights_gbWeight": 1750, - "techRecord_axles_0_weights_kerbWeight": 1100, - "techRecord_axles_0_weights_ladenWeight": 1300, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 110, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 816, - "techRecord_axles_1_tyres_tyreSize": "225-15", - "techRecord_axles_1_weights_designWeight": 2500, - "techRecord_axles_1_weights_gbWeight": 2500, - "techRecord_axles_1_weights_kerbWeight": 2000, - "techRecord_axles_1_weights_ladenWeight": 2300, - "techRecord_bodyMake": "TBC CONVERSION", - "techRecord_bodyModel": null, - "techRecord_bodyType_code": "m", - "techRecord_bodyType_description": "mini bus", - "techRecord_brakeCode": "00202", - "techRecord_brakes_brakeCode": "00202", - "techRecord_brakes_brakeCodeOriginal": "202", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", - "techRecord_brakes_dataTrBrakeThree": "AXLE 2", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "011028", - "techRecord_brakes_retarderBrakeOne": "none", - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "MERCEDES", - "techRecord_chassisModel": "516D", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T12:35:13.721Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m2", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 4250, - "techRecord_grossGbWeight": 4250, - "techRecord_grossKerbWeight": 3100, - "techRecord_grossLadenWeight": 3600, - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA QA Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-20", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 15, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000004", - "createdTimestamp": "2024-03-25T17:14:12.349Z", - "vin": "AUTOQAPSV00000009", - "partialVin": "000009", - "primaryVrm": "QA09PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 110, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 109, - "techRecord_axles_0_tyres_tyreSize": "205-16C", - "techRecord_axles_0_weights_designWeight": 1850, - "techRecord_axles_0_weights_gbWeight": 1850, - "techRecord_axles_0_weights_kerbWeight": 1200, - "techRecord_axles_0_weights_ladenWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 110, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 109, - "techRecord_axles_1_tyres_tyreSize": "205-16C", - "techRecord_axles_1_weights_designWeight": 2000, - "techRecord_axles_1_weights_gbWeight": 2000, - "techRecord_axles_1_weights_kerbWeight": 1700, - "techRecord_axles_1_weights_ladenWeight": null, - "techRecord_bodyMake": "STANFORD COACHWORKS", - "techRecord_bodyModel": null, - "techRecord_bodyType_code": "m", - "techRecord_bodyType_description": "mini bus", - "techRecord_brakeCode": "00202", - "techRecord_brakes_brakeCode": "00202", - "techRecord_brakes_brakeCodeOriginal": "202", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", - "techRecord_brakes_dataTrBrakeThree": "AXLE 2", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "010012", - "techRecord_brakes_retarderBrakeOne": "none", - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "VOLKSWAGEN", - "techRecord_chassisModel": "CRAFTER", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T14:04:01.129Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m2", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 3850, - "techRecord_grossGbWeight": 3850, - "techRecord_grossKerbWeight": 2900, - "techRecord_grossLadenWeight": 3680, - "techRecord_historicPrimaryVrm": "QA09PSV", - "techRecord_lastUpdatedAt": "2023-04-21T14:04:23.569Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-03-01", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 11, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000004", - "createdTimestamp": "2024-03-26T17:14:12.349Z", - "vin": "AUTOQAPSV00000009", - "partialVin": "000009", - "primaryVrm": "QA09PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 110, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 109, - "techRecord_axles_0_tyres_tyreSize": "205-16C", - "techRecord_axles_0_weights_designWeight": 1850, - "techRecord_axles_0_weights_gbWeight": 1850, - "techRecord_axles_0_weights_kerbWeight": 1200, - "techRecord_axles_0_weights_ladenWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 110, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 109, - "techRecord_axles_1_tyres_tyreSize": "205-16C", - "techRecord_axles_1_weights_designWeight": 2000, - "techRecord_axles_1_weights_gbWeight": 2000, - "techRecord_axles_1_weights_kerbWeight": 1700, - "techRecord_axles_1_weights_ladenWeight": null, - "techRecord_bodyMake": "STANFORD COACHWORKS", - "techRecord_bodyModel": null, - "techRecord_bodyType_code": "m", - "techRecord_bodyType_description": "mini bus", - "techRecord_brakeCode": "00202", - "techRecord_brakes_brakeCode": "00202", - "techRecord_brakes_brakeCodeOriginal": "202", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", - "techRecord_brakes_dataTrBrakeThree": "AXLE 2", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "010012", - "techRecord_brakes_retarderBrakeOne": "none", - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "VOLKSWAGEN", - "techRecord_chassisModel": "CRAFTER", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T14:04:23.569Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m2", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 3850, - "techRecord_grossGbWeight": 3850, - "techRecord_grossKerbWeight": 2900, - "techRecord_grossLadenWeight": 3680, - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA QA Automation Seed Data\n", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-03-01", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 11, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000005", - "createdTimestamp": "2024-03-25T17:14:13.349Z", - "vin": "AUTOQAPSV00000010", - "partialVin": "000010", - "primaryVrm": "QA10PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 152, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7500, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5000, - "techRecord_axles_0_weights_ladenWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 148, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 13000, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8100, - "techRecord_axles_1_weights_ladenWeight": null, - "techRecord_bodyMake": "VAN HOOL", - "techRecord_bodyModel": "Alize II", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "00202", - "techRecord_brakes_brakeCode": "00202", - "techRecord_brakes_brakeCodeOriginal": "202", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", - "techRecord_brakes_dataTrBrakeThree": "AXLE 2", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "008961", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "SCANIA", - "techRecord_chassisModel": "L94", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T14:34:12.662Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m3", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 19500, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13100, - "techRecord_grossLadenWeight": 17225, - "techRecord_historicPrimaryVrm": "QA10PSV", - "techRecord_lastUpdatedAt": "2023-04-21T14:34:34.980Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-02-01", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 53, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "90000005", - "createdTimestamp": "2024-03-26T17:14:13.349Z", - "vin": "AUTOQAPSV00000010", - "partialVin": "000010", - "primaryVrm": "QA10PSV", - "techRecord_alterationMarker": false, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 152, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7500, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5000, - "techRecord_axles_0_weights_ladenWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 148, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 13000, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8100, - "techRecord_axles_1_weights_ladenWeight": null, - "techRecord_bodyMake": "VAN HOOL", - "techRecord_bodyModel": "Alize II", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "00202", - "techRecord_brakes_brakeCode": "00202", - "techRecord_brakes_brakeCodeOriginal": "202", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 0, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": "2 AXLE F/R SPLIT (AXLE 1/ AXLE 2)", - "techRecord_brakes_dataTrBrakeThree": "AXLE 2", - "techRecord_brakes_dataTrBrakeTwo": "SPLIT SERVICE BRAKE (DESIGNATED) OR HANDBRAKE", - "techRecord_brakes_dtpNumber": "008961", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "SCANIA", - "techRecord_chassisModel": "L94", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T14:34:34.980Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_dda": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "m3", - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 19500, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13100, - "techRecord_grossLadenWeight": 17225, - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "VTA QA Automation Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-02-01", - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 53, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "l", - "techRecord_vehicleClass_description": "large psv(ie: greater than 23 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA06QA", - "createdTimestamp": "2024-03-25T17:14:10.346Z", - "vin": "AUTOQAHGV00000001", - "partialVin": "957486", - "primaryVrm": "QA01HGV", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA07QA", - "createdTimestamp": "2024-03-25T17:14:10.347Z", - "vin": "AUTOQAHGV00000002", - "partialVin": "957486", - "primaryVrm": "QA02HGV", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA08QA", - "createdTimestamp": "2024-03-25T17:14:11.347Z", - "vin": "AUTOQAHGV00000003", - "partialVin": "957486", - "primaryVrm": "QA03HGV", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA09QA", - "createdTimestamp": "2024-03-25T17:14:13.347Z", - "vin": "AUTOQAHGV00000004", - "partialVin": "957486", - "primaryVrm": "QA04HGV", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA10QA", - "createdTimestamp": "2024-03-25T17:14:14.347Z", - "vin": "AUTOQAHGV00000005", - "partialVin": "957486", - "primaryVrm": "QA05HGV", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000006", - "createdTimestamp": "2024-03-25T17:14:14.349Z", - "vin": "AUTOQAHGV00000006", - "partialVin": "000006", - "primaryVrm": "QA06HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 109, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 780, - "techRecord_axles_0_tyres_tyreSize": "215/70-15", - "techRecord_axles_0_weights_designWeight": 1850, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 1850, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 109, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 780, - "techRecord_axles_1_tyres_tyreSize": "215/70-15", - "techRecord_axles_1_weights_designWeight": 2000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 2000, - "techRecord_bodyType_code": "i", - "techRecord_bodyType_description": "livestock carrier", - "techRecord_brakes_dtpNumber": "10482", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T14:52:59.747Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n2", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3850, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 3850, - "techRecord_historicPrimaryVrm": "QA06HGV", - "techRecord_lastUpdatedAt": "2023-04-21T14:53:38.340Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_make": "PEUGEOT", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "Boxer", - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-01", - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 3850, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": 3850, - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000006", - "createdTimestamp": "2024-03-26T17:14:14.349Z", - "vin": "AUTOQAHGV00000006", - "partialVin": "000006", - "primaryVrm": "QA06HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 109, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 780, - "techRecord_axles_0_tyres_tyreSize": "215/70-15", - "techRecord_axles_0_weights_designWeight": 1850, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 1850, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 109, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 780, - "techRecord_axles_1_tyres_tyreSize": "215/70-15", - "techRecord_axles_1_weights_designWeight": 2000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 2000, - "techRecord_bodyType_code": "i", - "techRecord_bodyType_description": "livestock carrier", - "techRecord_brakes_dtpNumber": "10482", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T14:53:38.340Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n2", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3850, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 3850, - "techRecord_make": "PEUGEOT", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "Boxer", - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA QA Automation Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-01", - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 3850, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": 3850, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000007", - "createdTimestamp": "2024-03-25T17:14:15.349Z", - "vin": "AUTOQAHGV00000007", - "partialVin": "000007", - "primaryVrm": "QA07HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 152, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 148, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "09876", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T15:37:18.175Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 19000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 18000, - "techRecord_historicPrimaryVrm": "QA07HGV", - "techRecord_lastUpdatedAt": "2023-04-21T15:37:46.133Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_make": "MAN", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "TGS", - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-03-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000007", - "createdTimestamp": "2024-03-26T17:14:15.349Z", - "vin": "AUTOQAHGV00000007", - "partialVin": "000007", - "primaryVrm": "QA07HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 152, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 148, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "09876", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T15:37:46.133Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 19000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 18000, - "techRecord_make": "MAN", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "TGS", - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA QA Automation Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-03-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000008", - "createdTimestamp": "2024-03-25T17:14:16.349Z", - "vin": "AUTOQAHGV00000008", - "partialVin": "000008", - "primaryVrm": "QA08HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 156, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 8000, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 150, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 13000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_bodyType_code": "t", - "techRecord_bodyType_description": "tipper", - "techRecord_brakes_dtpNumber": "10293", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T15:14:19.219Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 20000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 18000, - "techRecord_historicPrimaryVrm": "QA08HGV", - "techRecord_lastUpdatedAt": "2023-04-21T15:14:33.301Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_make": "SCANIA", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "R410", - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000008", - "createdTimestamp": "2024-03-26T17:14:16.349Z", - "vin": "AUTOQAHGV00000008", - "partialVin": "000008", - "primaryVrm": "QA08HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 156, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 8000, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 150, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 13000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_bodyType_code": "t", - "techRecord_bodyType_description": "tipper", - "techRecord_brakes_dtpNumber": "10293", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T15:14:33.301Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 20000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 18000, - "techRecord_make": "SCANIA", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "R410", - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA QA Automation Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-04-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000009", - "createdTimestamp": "2024-03-25T17:14:17.349Z", - "vin": "AUTOQAHGV00000009", - "partialVin": "000009", - "primaryVrm": "QA09HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 156, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 7500, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 7500, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 150, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 12000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 156, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_tyreCode": 428, - "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_2_weights_designWeight": 7100, - "techRecord_axles_2_weights_eecWeight": null, - "techRecord_axles_2_weights_gbWeight": 7500, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "10234", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T15:22:27.522Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 27000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 26000, - "techRecord_historicPrimaryVrm": "QA09HGV", - "techRecord_lastUpdatedAt": "2023-04-21T15:22:55.800Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_make": "MERCEDES", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "Actros 6X2", - "techRecord_noOfAxles": 3, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-01-10", - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000009", - "createdTimestamp": "2024-03-26T17:14:17.349Z", - "vin": "AUTOQAHGV00000009", - "partialVin": "000009", - "primaryVrm": "QA09HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 156, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 7500, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 7500, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 150, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 12000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 156, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_tyreCode": 428, - "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_2_weights_designWeight": 7100, - "techRecord_axles_2_weights_eecWeight": null, - "techRecord_axles_2_weights_gbWeight": 7500, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "10234", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T15:22:55.800Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 27000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 26000, - "techRecord_make": "MERCEDES", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "Actros 6X2", - "techRecord_noOfAxles": 3, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA QA Automation Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-01-10", - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000010", - "createdTimestamp": "2024-03-25T17:14:18.349Z", - "vin": "AUTOQAHGV00000010", - "partialVin": "000010", - "primaryVrm": "QA10HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 152, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 152, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 7100, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 7100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 148, - "techRecord_axles_2_tyres_fitmentCode": "double", - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_tyreCode": 456, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 10500, - "techRecord_axles_2_weights_eecWeight": null, - "techRecord_axles_2_weights_gbWeight": 9500, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 148, - "techRecord_axles_3_tyres_fitmentCode": "double", - "techRecord_axles_3_tyres_plyRating": null, - "techRecord_axles_3_tyres_tyreCode": 456, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 10500, - "techRecord_axles_3_weights_eecWeight": null, - "techRecord_axles_3_weights_gbWeight": 9500, - "techRecord_bodyType_code": "t", - "techRecord_bodyType_description": "tipper", - "techRecord_brakes_dtpNumber": "09876", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T15:29:16.823Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": null, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 34000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 32000, - "techRecord_historicPrimaryVrm": "QA10HGV", - "techRecord_lastUpdatedAt": "2023-04-21T15:29:47.686Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_make": "VOLVO", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "FH-540 8X4", - "techRecord_noOfAxles": 4, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-03-20", - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": "2R", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000010", - "createdTimestamp": "2024-03-26T17:14:18.349Z", - "vin": "AUTOQAHGV00000010", - "partialVin": "000010", - "primaryVrm": "QA10HGV", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 152, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 152, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 7100, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 7100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 148, - "techRecord_axles_2_tyres_fitmentCode": "double", - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_tyreCode": 456, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 10500, - "techRecord_axles_2_weights_eecWeight": null, - "techRecord_axles_2_weights_gbWeight": 9500, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 148, - "techRecord_axles_3_tyres_fitmentCode": "double", - "techRecord_axles_3_tyres_plyRating": null, - "techRecord_axles_3_tyres_tyreCode": 456, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 10500, - "techRecord_axles_3_weights_eecWeight": null, - "techRecord_axles_3_weights_gbWeight": 9500, - "techRecord_bodyType_code": "t", - "techRecord_bodyType_description": "tipper", - "techRecord_brakes_dtpNumber": "09876", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2023-04-21T15:29:47.686Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": null, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": "n3", - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 34000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 32000, - "techRecord_make": "VOLVO", - "techRecord_manufactureYear": 2022, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_microfilm": null, - "techRecord_model": "FH-540 8X4", - "techRecord_noOfAxles": 4, - "techRecord_numberOfWheelsDriven": null, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "VTA QA Automation Seed Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-03-20", - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": "2R", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "90000016", - "createdTimestamp": "2024-03-25T17:14:24.349Z", - "vin": "AUTOQACAR00000001", - "partialVin": "000001", - "primaryVrm": "QA01CAR", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:24:15.931Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "m1", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car" - }, - { - "systemNumber": "90000017", - "createdTimestamp": "2024-03-25T17:14:25.349Z", - "vin": "AUTOQACAR00000002", - "partialVin": "000002", - "primaryVrm": "QA02CAR", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:25:55.047Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "m1", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "t", - "techRecord_vehicleType": "car" - }, - { - "systemNumber": "90000018", - "createdTimestamp": "2024-03-25T17:14:26.349Z", - "vin": "AUTOQACAR00000003", - "partialVin": "000003", - "primaryVrm": "QA03CAR", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:27:07.987Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "m1", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "r", - "techRecord_vehicleType": "car" - }, - { - "systemNumber": "90000019", - "createdTimestamp": "2024-03-25T17:14:27.349Z", - "vin": "AUTOQALGV00000001", - "partialVin": "000001", - "primaryVrm": "QA01LGV", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:28:09.244Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "n1", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "c", - "techRecord_vehicleType": "lgv" - }, - { - "systemNumber": "90000020", - "createdTimestamp": "2024-03-25T17:14:28.349Z", - "vin": "AUTOQALGV00000002", - "partialVin": "000002", - "primaryVrm": "QA02LGV", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:29:32.732Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "n1", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "p", - "techRecord_vehicleType": "lgv" - }, - { - "systemNumber": "90000021", - "createdTimestamp": "2024-03-25T17:14:29.349Z", - "vin": "AUTOQALGV00000003", - "partialVin": "000003", - "primaryVrm": "QA03LGV", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:30:31.092Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "n1", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "r", - "techRecord_vehicleType": "lgv" - }, - { - "systemNumber": "90000022", - "createdTimestamp": "2024-03-25T17:14:30.349Z", - "vin": "AUTOQASTRL0000001", - "partialVin": "000001", - "trailerId": "020003T", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:37:45.288Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "o1", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": "1", - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "r", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "90000023", - "createdTimestamp": "2024-03-25T17:14:31.349Z", - "vin": "AUTOQASTRL0000002", - "partialVin": "000002", - "trailerId": "020004T", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:39:58.116Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "o1", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": "2", - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "drawbar", - "techRecord_vehicleSubclass_0": "r", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "90000024", - "createdTimestamp": "2024-03-25T17:14:32.349Z", - "vin": "AUTOQASTRL0000003", - "partialVin": "000003", - "trailerId": "020005T", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:41:38.522Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "o2", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": "1", - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "r", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "90000025", - "createdTimestamp": "2024-03-25T17:14:33.349Z", - "vin": "AUTOQASTRL0000004", - "partialVin": "000004", - "trailerId": "020006T", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:44:00.760Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "o2", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": "2", - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "drawbar", - "techRecord_vehicleSubclass_0": "r", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "90000026", - "createdTimestamp": "2024-03-25T17:14:34.349Z", - "vin": "AUTOQAMCYCLE00001", - "partialVin": "E00001", - "primaryVrm": "QA01MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:51:05.597Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "l1e-a", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 0, - "techRecord_numberOfWheelsDriven": 3, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "1", - "techRecord_vehicleClass_description": "motorbikes up to 200cc", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle" - }, - { - "systemNumber": "90000027", - "createdTimestamp": "2024-03-25T17:14:35.349Z", - "vin": "AUTOQAMCYCLE00002", - "partialVin": "E00002", - "primaryVrm": "QA02MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:53:23.034Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": "l1e", - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 0, - "techRecord_numberOfWheelsDriven": 2, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "1", - "techRecord_vehicleClass_description": "motorbikes up to 200cc", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle" - }, - { - "systemNumber": "90000028", - "createdTimestamp": "2024-03-25T17:14:36.349Z", - "vin": "AUTOQAMCYCLE00003", - "partialVin": "E00003", - "primaryVrm": "QA03MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:56:50.713Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": null, - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 0, - "techRecord_numberOfWheelsDriven": 2, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "2", - "techRecord_vehicleClass_description": "motorbikes over 200cc or with a sidecar", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle" - }, - { - "systemNumber": "90000029", - "createdTimestamp": "2024-03-25T17:14:12.350Z", - "vin": "AUTOQAMCYCLE00004", - "partialVin": "E00004", - "primaryVrm": "QA04MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:57:50.771Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": null, - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 1, - "techRecord_numberOfWheelsDriven": 3, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "3", - "techRecord_vehicleClass_description": "3 wheelers", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle" - }, - { - "systemNumber": "90000030", - "createdTimestamp": "2024-03-25T17:14:13.350Z", - "vin": "AUTOQAMCYCLE00005", - "partialVin": "E00005", - "primaryVrm": "QA05MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:59:04.868Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": null, - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 1, - "techRecord_numberOfWheelsDriven": 3, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "4", - "techRecord_vehicleClass_description": "MOT class 4", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle" - }, - { - "systemNumber": "90000031", - "createdTimestamp": "2024-03-25T17:14:14.350Z", - "vin": "AUTOQAMCYCLE00006", - "partialVin": "E00006", - "primaryVrm": "QA06MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2023-04-24T10:59:59.685Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_euVehicleCategory": null, - "techRecord_lastUpdatedAt": null, - "techRecord_lastUpdatedById": null, - "techRecord_lastUpdatedByName": null, - "techRecord_manufactureYear": 2022, - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": 4, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "4", - "techRecord_vehicleClass_description": "MOT class 4", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle" - }, - { - "systemNumber": "10000555", - "createdTimestamp": "2024-02-05T08:26:15.659Z", - "partialVin": "GVTST1", - "primaryVrm": "HGVTST1", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-02-05T08:26:15.659Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST1" - }, - { - "systemNumber": "10001555", - "createdTimestamp": "2024-02-05T08:26:15.659Z", - "partialVin": "GVTST2", - "primaryVrm": "HGVTST2", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-02-05T08:26:15.659Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST2" - }, - { - "systemNumber": "10000559", - "createdTimestamp": "2024-02-05T08:51:54.172Z", - "partialVin": "GVTST3", - "primaryVrm": "HGVTST3", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "nobody@somewhere.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07257936528", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123456", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "123546", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2024-02-05T08:51:54.172Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 2600, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 2600, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 19, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "n1", - "techRecord_frontAxleTo5thWheelMax": 2600, - "techRecord_frontAxleTo5thWheelMin": 12000, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, - "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, - "techRecord_fuelPropulsionSystem": "Petrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_lastUpdatedAt": "2024-02-05T14:46:26.973Z", - "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", - "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainDesignWeight": 100, - "techRecord_maxTrainEecWeight": 100, - "techRecord_maxTrainGbWeight": 100, - "techRecord_model": "123456", - "techRecord_noOfAxles": 4, - "techRecord_notes": "Complete record for HGV", - "techRecord_ntaNumber": "123456", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 100, - "techRecord_trainEecWeight": 100, - "techRecord_trainGbWeight": 100, - "techRecord_tyreUseCode": "2R", - "techRecord_updateType": "adrUpdate", - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST3" - }, - { - "systemNumber": "10001559", - "createdTimestamp": "2024-02-05T08:51:54.172Z", - "partialVin": "GVTST4", - "primaryVrm": "HGVTST4", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "nobody@somewhere.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07257936528", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123456", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "123546", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2024-02-05T08:51:54.172Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 2600, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 2600, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 19, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "n1", - "techRecord_frontAxleTo5thWheelMax": 2600, - "techRecord_frontAxleTo5thWheelMin": 12000, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, - "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, - "techRecord_fuelPropulsionSystem": "Petrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_lastUpdatedAt": "2024-02-05T14:46:26.973Z", - "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", - "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainDesignWeight": 100, - "techRecord_maxTrainEecWeight": 100, - "techRecord_maxTrainGbWeight": 100, - "techRecord_model": "123456", - "techRecord_noOfAxles": 4, - "techRecord_notes": "Complete record for HGV", - "techRecord_ntaNumber": "123456", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 100, - "techRecord_trainEecWeight": 100, - "techRecord_trainGbWeight": 100, - "techRecord_tyreUseCode": "2R", - "techRecord_updateType": "adrUpdate", - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST4" - }, - { - "systemNumber": "10000569", - "createdTimestamp": "2024-02-05T10:18:35.977Z", - "partialVin": "GVTST5", - "primaryVrm": "HGVTST5", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "12345678", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1235467", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": 10, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07826836837", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "12345", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "123456", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2024-02-05T10:18:35.977Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 2600, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 2600, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 12, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "n1", - "techRecord_frontAxleTo5thWheelMax": 2600, - "techRecord_frontAxleTo5thWheelMin": 12000, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMax": 2600, - "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, - "techRecord_fuelPropulsionSystem": "Petrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainDesignWeight": 100, - "techRecord_maxTrainEecWeight": 100, - "techRecord_maxTrainGbWeight": 100, - "techRecord_model": "12345", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete HGV Record with ADR Details.", - "techRecord_ntaNumber": "12356", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 100, - "techRecord_trainEecWeight": 100, - "techRecord_trainGbWeight": 100, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST5" - }, - { - "systemNumber": "10000583", - "createdTimestamp": "2024-02-05T11:52:21.884Z", - "partialVin": "GVTST6", - "primaryVrm": "HGVTST6", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "12345", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-02-05T11:52:21.884Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_notes": "Skeleton HGV Semi-Trailer Tank Record with ADR Details", - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST6" - }, - { - "systemNumber": "10000586", - "createdTimestamp": "2024-02-05T12:18:29.778Z", - "partialVin": "GVTST7", - "primaryVrm": "HGVTST7", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Note", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": "1234567", - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": true, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "124356", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1243567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "12356", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "12345467", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": 12, - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123435", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_parkingBrakeMrk": false, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_dtpNumber": "123", - "techRecord_conversionRefNo": "123456", - "techRecord_createdAt": "2024-02-05T12:18:29.778Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 1200, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 2, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "n1", - "techRecord_frontAxleTo5thWheelMax": 12000, - "techRecord_frontAxleTo5thWheelMin": 12000, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMax": 12000, - "techRecord_frontVehicleTo5thWheelCouplingMin": 12000, - "techRecord_fuelPropulsionSystem": "Petrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2012, - "techRecord_maxTrainDesignWeight": 100, - "techRecord_maxTrainEecWeight": 100, - "techRecord_maxTrainGbWeight": 100, - "techRecord_model": "12345", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete HGV Semi-Trailer Battery with ADR Details", - "techRecord_ntaNumber": "123456", - "techRecord_offRoad": true, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 100, - "techRecord_trainEecWeight": 100, - "techRecord_trainGbWeight": 100, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "HGVTST7" - }, - { - "systemNumber": "10000556", - "createdTimestamp": "2024-02-05T08:27:13.558Z", - "partialVin": "GVTST1", - "primaryVrm": "LGVTST1", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T08:27:13.558Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": null, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": null, - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST1" - }, - { - "systemNumber": "10001556", - "createdTimestamp": "2024-02-05T08:27:13.558Z", - "partialVin": "GVTST2", - "primaryVrm": "LGVTST2", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T08:27:13.558Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": null, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": null, - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST2" - }, - { - "systemNumber": "10000560", - "createdTimestamp": "2024-02-05T08:53:17.809Z", - "partialVin": "GVTST3", - "primaryVrm": "LGVTST3", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07486276309", - "techRecord_createdAt": "2024-02-05T08:53:17.809Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Complete LGV Record", - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST3" - }, - { - "systemNumber": "10001560", - "createdTimestamp": "2024-02-05T08:53:17.809Z", - "partialVin": "GVTST4", - "primaryVrm": "LGVTST4", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07486276309", - "techRecord_createdAt": "2024-02-05T08:53:17.809Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Complete LGV Record", - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST4" - }, - { - "systemNumber": "10000573", - "createdTimestamp": "2024-02-05T10:27:21.754Z", - "partialVin": "GVTST5", - "primaryVrm": "LGVTST5", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": 10, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07827638498", - "techRecord_createdAt": "2024-02-05T10:27:21.754Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "A Complete LGV Record with ADR Details.", - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST5" - }, - { - "systemNumber": "10000584", - "createdTimestamp": "2024-02-05T11:56:05.666Z", - "partialVin": "GVTST6", - "primaryVrm": "LGVTST6", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123123", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T11:56:05.666Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": null, - "techRecord_lastUpdatedAt": "2024-02-05T15:09:22.135Z", - "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", - "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", - "techRecord_manufactureYear": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": "Skeleton LGV Semi-Trailer Tank with ADR Details", - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "current", - "techRecord_updateType": "adrUpdate", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST6" - }, - { - "systemNumber": "10000587", - "createdTimestamp": "2024-02-05T12:26:02.064Z", - "partialVin": "GVTST7", - "primaryVrm": "LGVTST7", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Note", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Note", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1243567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": 1234567, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-02-05T12:26:02.064Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_euVehicleCategory": "m1", - "techRecord_manufactureYear": 2012, - "techRecord_noOfAxles": 2, - "techRecord_notes": "A Complete LGV Semi-Trailer Battery with ADR Details.", - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2012-12-12", - "techRecord_statusCode": "current", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "LGVTST7" - }, - { - "systemNumber": "10000557", - "createdTimestamp": "2024-02-05T08:31:56.200Z", - "partialVin": "STTRL1", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T08:31:56.200Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST1", - "vin": "TRLTST1" - }, - { - "systemNumber": "10001557", - "createdTimestamp": "2024-02-05T08:31:56.200Z", - "partialVin": "RLTST2", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T08:31:56.200Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 1, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST2", - "vin": "TRLTST2" - }, - { - "systemNumber": "10000564", - "createdTimestamp": "2024-02-05T09:04:17.170Z", - "partialVin": "RLTST3", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07812736748", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123435", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 100, - "techRecord_axles_0_brakes_leverLength": 100, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 100, - "techRecord_axles_1_brakes_leverLength": 100, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 100, - "techRecord_axles_2_brakes_leverLength": 100, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_brakes_brakeActuator": 100, - "techRecord_axles_3_brakes_leverLength": 100, - "techRecord_axles_3_brakes_springBrakeParking": true, - "techRecord_axles_3_parkingBrakeMrk": true, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": false, - "techRecord_brakes_dtpNumber": "123435", - "techRecord_brakes_loadSensingValve": false, - "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, - "techRecord_conversionRefNo": "123456", - "techRecord_couplingCenterToRearAxleMax": 12000, - "techRecord_couplingCenterToRearAxleMin": 12000, - "techRecord_couplingCenterToRearTrlMax": 12000, - "techRecord_couplingCenterToRearTrlMin": 12000, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T09:04:17.170Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 2600, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 12000, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_euVehicleCategory": "m1", - "techRecord_firstUseDate": "2012-12-12", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "31807HM&G", - "techRecord_manufacturerDetails_address1": "Address", - "techRecord_manufacturerDetails_address2": "Address", - "techRecord_manufacturerDetails_address3": "County", - "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", - "techRecord_manufacturerDetails_faxNumber": "07916836746", - "techRecord_manufacturerDetails_manufacturerNotes": "Notes", - "techRecord_manufacturerDetails_name": "Name", - "techRecord_manufacturerDetails_postCode": "PSTCD", - "techRecord_manufacturerDetails_postTown": "Town", - "techRecord_manufacturerDetails_telephoneNumber": "07625836846", - "techRecord_manufactureYear": 2012, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": "124354", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete TRL Record.", - "techRecord_ntaNumber": "123456", - "techRecord_purchaserDetails_address1": "Address", - "techRecord_purchaserDetails_address2": "Address", - "techRecord_purchaserDetails_address3": "County", - "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", - "techRecord_purchaserDetails_faxNumber": "07652873647", - "techRecord_purchaserDetails_name": "Name", - "techRecord_purchaserDetails_postCode": "PSTCD", - "techRecord_purchaserDetails_postTown": "Town", - "techRecord_purchaserDetails_purchaserNotes": "Notes", - "techRecord_purchaserDetails_telephoneNumber": "07827635746", - "techRecord_rearAxleToRearTrl": 2600, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST3", - "vin": "TRLTST3" - }, - { - "systemNumber": "10001564", - "createdTimestamp": "2024-02-05T09:04:17.170Z", - "partialVin": "RLTST4", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07812736748", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123435", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 100, - "techRecord_axles_0_brakes_leverLength": 100, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 100, - "techRecord_axles_1_brakes_leverLength": 100, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 100, - "techRecord_axles_2_brakes_leverLength": 100, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_brakes_brakeActuator": 100, - "techRecord_axles_3_brakes_leverLength": 100, - "techRecord_axles_3_brakes_springBrakeParking": true, - "techRecord_axles_3_parkingBrakeMrk": true, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": false, - "techRecord_brakes_dtpNumber": "123435", - "techRecord_brakes_loadSensingValve": false, - "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, - "techRecord_conversionRefNo": "123456", - "techRecord_couplingCenterToRearAxleMax": 12000, - "techRecord_couplingCenterToRearAxleMin": 12000, - "techRecord_couplingCenterToRearTrlMax": 12000, - "techRecord_couplingCenterToRearTrlMin": 12000, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T09:04:17.170Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 2600, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 12000, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_euVehicleCategory": "m1", - "techRecord_firstUseDate": "2012-12-12", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "31807HM&G", - "techRecord_manufacturerDetails_address1": "Address", - "techRecord_manufacturerDetails_address2": "Address", - "techRecord_manufacturerDetails_address3": "County", - "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", - "techRecord_manufacturerDetails_faxNumber": "07916836746", - "techRecord_manufacturerDetails_manufacturerNotes": "Notes", - "techRecord_manufacturerDetails_name": "Name", - "techRecord_manufacturerDetails_postCode": "PSTCD", - "techRecord_manufacturerDetails_postTown": "Town", - "techRecord_manufacturerDetails_telephoneNumber": "07625836846", - "techRecord_manufactureYear": 2012, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": "124354", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete TRL Record.", - "techRecord_ntaNumber": "123456", - "techRecord_purchaserDetails_address1": "Address", - "techRecord_purchaserDetails_address2": "Address", - "techRecord_purchaserDetails_address3": "County", - "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", - "techRecord_purchaserDetails_faxNumber": "07652873647", - "techRecord_purchaserDetails_name": "Name", - "techRecord_purchaserDetails_postCode": "PSTCD", - "techRecord_purchaserDetails_postTown": "Town", - "techRecord_purchaserDetails_purchaserNotes": "Notes", - "techRecord_purchaserDetails_telephoneNumber": "07827635746", - "techRecord_rearAxleToRearTrl": 2600, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST4", - "vin": "TRLTST4" - }, - { - "systemNumber": "10000575", - "createdTimestamp": "2024-02-05T10:41:18.513Z", - "partialVin": "RLTST5", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", - "techRecord_adrDetails_adrTypeApprovalNo": "1234567", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_1": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": 10, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "Address", - "techRecord_applicantDetails_address2": "Address", - "techRecord_applicantDetails_address3": "County", - "techRecord_applicantDetails_emailAddress": "someone@nobody.com", - "techRecord_applicantDetails_name": "Name", - "techRecord_applicantDetails_postCode": "PSTCD", - "techRecord_applicantDetails_postTown": "Town", - "techRecord_applicantDetails_telephoneNumber": "07625938746", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1234567", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 100, - "techRecord_axles_0_brakes_leverLength": 100, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 100, - "techRecord_axles_1_brakes_leverLength": 100, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 100, - "techRecord_axles_2_brakes_leverLength": 100, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_brakes_brakeActuator": 100, - "techRecord_axles_3_brakes_leverLength": 100, - "techRecord_axles_3_brakes_springBrakeParking": true, - "techRecord_axles_3_parkingBrakeMrk": true, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "123456", - "techRecord_brakes_loadSensingValve": true, - "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, - "techRecord_conversionRefNo": "123546", - "techRecord_couplingCenterToRearAxleMax": 12000, - "techRecord_couplingCenterToRearAxleMin": 12000, - "techRecord_couplingCenterToRearTrlMax": 12000, - "techRecord_couplingCenterToRearTrlMin": 12000, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T10:41:18.513Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 2600, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 12000, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_euVehicleCategory": "m1", - "techRecord_firstUseDate": "2012-12-12", - "techRecord_frameDescription": "Channel section", - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_lastUpdatedAt": "2024-02-05T15:32:15.140Z", - "techRecord_lastUpdatedById": "5bcfc696-f890-45a8-a045-6bcfbe873606", - "techRecord_lastUpdatedByName": "TST CVS CSCProcessingDev2", - "techRecord_make": "31807HM&G", - "techRecord_manufacturerDetails_address1": "Address", - "techRecord_manufacturerDetails_address2": "Address", - "techRecord_manufacturerDetails_address3": "County", - "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", - "techRecord_manufacturerDetails_faxNumber": "07825735736", - "techRecord_manufacturerDetails_manufacturerNotes": "Manufacturer Notes", - "techRecord_manufacturerDetails_name": "Name", - "techRecord_manufacturerDetails_postCode": "PSTCD", - "techRecord_manufacturerDetails_postTown": "Town", - "techRecord_manufacturerDetails_telephoneNumber": "07826354726", - "techRecord_manufactureYear": 2012, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": "123456", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete TRL Record with ADR Details.", - "techRecord_ntaNumber": "1234567", - "techRecord_purchaserDetails_address1": "Address", - "techRecord_purchaserDetails_address2": "Address", - "techRecord_purchaserDetails_address3": "County", - "techRecord_purchaserDetails_emailAddress": "someone@nowhere.com", - "techRecord_purchaserDetails_faxNumber": "07625384657", - "techRecord_purchaserDetails_name": "Name", - "techRecord_purchaserDetails_postCode": "PSTCD", - "techRecord_purchaserDetails_postTown": "Town", - "techRecord_purchaserDetails_purchaserNotes": "Purchaser Notes", - "techRecord_purchaserDetails_telephoneNumber": "07087625364", - "techRecord_rearAxleToRearTrl": 2600, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": "2R", - "techRecord_updateType": "adrUpdate", - "techRecord_variantNumber": "123456", - "techRecord_variantVersionNumber": "123456", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST5", - "vin": "TRLTST5" - }, - { - "systemNumber": "10000585", - "createdTimestamp": "2024-02-05T12:01:26.149Z", - "partialVin": "RLTST6", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123123", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T12:01:26.149Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": null, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": null, - "techRecord_notes": "A Skeleton TRL Semi-Trailer Tank Record with ADR Details", - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Testing", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "current", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST6", - "vin": "TRLTST6" - }, - { - "systemNumber": "10000588", - "createdTimestamp": "2024-02-05T12:42:03.346Z", - "partialVin": "RLTST7", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-02-05", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "John Smith", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": "ADR Certificate Notes", - "techRecord_adrDetails_adrTypeApprovalNo": "123456", - "techRecord_adrDetails_applicantDetails_city": "City", - "techRecord_adrDetails_applicantDetails_name": "Name", - "techRecord_adrDetails_applicantDetails_postcode": "PSTCD", - "techRecord_adrDetails_applicantDetails_street": "Street", - "techRecord_adrDetails_applicantDetails_town": "Town", - "techRecord_adrDetails_batteryListNumber": "1243567", - "techRecord_adrDetails_brakeDeclarationIssuer": "Issuer", - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": true, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": true, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_memosApply_0": "07/09 3mth leak ext ", - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Special Provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "123456", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Make", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": "Additional Details", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo_0": "1234567", - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": "Product list", - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances (Class UN number and if necessary packing group and proper shipping name) may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "123456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2012-12-12", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "1234567", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": "intermediate", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2012, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2012-12-12", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer battery", - "techRecord_adrDetails_weight": 12, - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "123435", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 100, - "techRecord_axles_0_brakes_leverLength": 100, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 101, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "8", - "techRecord_axles_0_tyres_tyreCode": 100, - "techRecord_axles_0_tyres_tyreSize": "175-16C", - "techRecord_axles_0_weights_designWeight": 100, - "techRecord_axles_0_weights_eecWeight": 100, - "techRecord_axles_0_weights_gbWeight": 100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 100, - "techRecord_axles_1_brakes_leverLength": 100, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 627, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "18", - "techRecord_axles_1_tyres_tyreCode": 90, - "techRecord_axles_1_tyres_tyreSize": "825-15", - "techRecord_axles_1_weights_designWeight": 100, - "techRecord_axles_1_weights_eecWeight": 100, - "techRecord_axles_1_weights_gbWeight": 100, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 100, - "techRecord_axles_2_brakes_leverLength": 100, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 607, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "8", - "techRecord_axles_2_tyres_tyreCode": 80, - "techRecord_axles_2_tyres_tyreSize": "700-15C", - "techRecord_axles_2_weights_designWeight": 100, - "techRecord_axles_2_weights_eecWeight": 100, - "techRecord_axles_2_weights_gbWeight": 100, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_brakes_brakeActuator": 100, - "techRecord_axles_3_brakes_leverLength": 100, - "techRecord_axles_3_brakes_springBrakeParking": true, - "techRecord_axles_3_parkingBrakeMrk": true, - "techRecord_axles_3_tyres_dataTrAxles": 599, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "6", - "techRecord_axles_3_tyres_tyreCode": 70, - "techRecord_axles_3_tyres_tyreSize": "590-15C", - "techRecord_axles_3_weights_designWeight": 100, - "techRecord_axles_3_weights_eecWeight": 100, - "techRecord_axles_3_weights_gbWeight": 100, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "124356", - "techRecord_brakes_loadSensingValve": true, - "techRecord_centreOfRearmostAxleToRearOfTrl": 12000, - "techRecord_conversionRefNo": "12343546", - "techRecord_couplingCenterToRearAxleMax": 12000, - "techRecord_couplingCenterToRearAxleMin": 12000, - "techRecord_couplingCenterToRearTrlMax": 12000, - "techRecord_couplingCenterToRearTrlMin": 12000, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-02-05T12:42:03.346Z", - "techRecord_createdById": "ce6809bb-0631-4df4-983c-a7a124120d91", - "techRecord_createdByName": null, - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 12000, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 12000, - "techRecord_dimensions_axleSpacing_2_axles": "3-4", - "techRecord_dimensions_axleSpacing_2_value": 12000, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2600, - "techRecord_euVehicleCategory": "m1", - "techRecord_firstUseDate": "2012-12-12", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": 12000, - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 100, - "techRecord_grossEecWeight": 100, - "techRecord_grossGbWeight": 100, - "techRecord_make": "31807HM&G", - "techRecord_manufacturerDetails_address1": "Address", - "techRecord_manufacturerDetails_address2": "Address", - "techRecord_manufacturerDetails_address3": "County", - "techRecord_manufacturerDetails_emailAddress": "someone@nowhere.com", - "techRecord_manufacturerDetails_faxNumber": "07816527635", - "techRecord_manufacturerDetails_manufacturerNotes": "Manufacturer Note", - "techRecord_manufacturerDetails_name": "Name", - "techRecord_manufacturerDetails_postCode": "PSTCD", - "techRecord_manufacturerDetails_postTown": "Town", - "techRecord_manufacturerDetails_telephoneNumber": "07265837645", - "techRecord_manufactureYear": 2012, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": "12345", - "techRecord_noOfAxles": 4, - "techRecord_notes": "A Complete TRL Semi-Trailer Battery with ADR Details", - "techRecord_ntaNumber": "123456", - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": 12000, - "techRecord_reasonForCreation": "Testing.", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2012-12-12", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "S", - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "12345", - "techRecord_variantVersionNumber": "12345", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "TRLTST7", - "vin": "TRLTST7" - }, - { - "systemNumber": "11000013", - "createdTimestamp": "2024-03-25T17:64:12.334Z", - "vin": "P012301230123", - "partialVin": "230123", - "primaryVrm": "CT70VRL", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_vehicleSubclass_0": "string", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_model": "FM", - "techRecord_functionCode": "A", - "techRecord_brakeCode": "178202", - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_manufactureYear": 2018, - "techRecord_regnDate": "2019-06-24", - "techRecord_ntaNumber": "123456", - "techRecord_conversionRefNo": "7891234", - "techRecord_speedLimiterMrk": true, - "techRecord_tachoExemptMrk": true, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_statusCode": "current", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_trainGbWeight": 1500, - "techRecord_trainDesignWeight": 2000, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_tyreUseCode": "2B", - "techRecord_roadFriendly": true, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euroStandard": "7", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_noOfAxles": 2, - "techRecord_vehicleType": "hgv", - "techRecord_vehicleConfiguration": "semi-car transporter", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_notes": "test note", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_brakes_dtpNumber": "sdgsd", - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_numberOfWheelsDriven": null, - "techRecord_recordCompleteness": "complete" - }, - { - "systemNumber": "11000027", - "createdTimestamp": "2024-03-25T17:14:12.665Z", - "vin": "P012301270123", - "partialVin": "270123", - "primaryVrm": "CT70VRL", - "secondaryVrms": [ - "CT56DRG" - ], - "techRecord_vehicleSubclass_0": "string", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "string", - "techRecord_model": "string", - "techRecord_functionCode": "A", - "techRecord_brakeCode": "178202", - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_manufactureYear": 2018, - "techRecord_regnDate": "2019-06-24", - "techRecord_ntaNumber": "123456", - "techRecord_conversionRefNo": "7891234", - "techRecord_speedLimiterMrk": true, - "techRecord_tachoExemptMrk": true, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_statusCode": "provisional", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_trainGbWeight": 1500, - "techRecord_trainDesignWeight": 2000, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_tyreUseCode": "2B", - "techRecord_roadFriendly": true, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euroStandard": "7", - "techRecord_dtpNumber": "string", - "techRecord_fuelPropulsionSystem": "string", - "techRecord_offRoad": true, - "techRecord_numberOfWheelsDriven": 2, - "techRecord_euVehicleCategory": "m1", - "techRecord_emissionsLimit": 2, - "techRecord_departmentalVehicleMarker": true, - "techRecord_alterationMarker": true, - "techRecord_approvalType": "abc", - "techRecord_approvalTypeNumber": "abcd", - "techRecord_variantNumber": "string", - "techRecord_variantVersionNumber": "string", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_noOfAxles": 2, - "techRecord_vehicleType": "hgv", - "techRecord_vehicleConfiguration": "semi-car transporter", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_notes": "test note", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_brakes_dtpNumber": "sdgsd", - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_recordCompleteness": "complete" - }, - { - "systemNumber": "VTA16QA", - "createdTimestamp": "2024-03-25T17:14:20.347Z", - "vin": "AUTOQAPCM00000002", - "partialVin": "000002", - "primaryVrm": "QA02CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA16QA", - "createdTimestamp": "2024-03-26T17:14:12.347Z", - "vin": "AUTOQAPCM00000002", - "partialVin": "000002", - "primaryVrm": "QA02CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": "m2", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA17QA", - "createdTimestamp": "2024-03-25T17:14:21.347Z", - "vin": "AUTOQAPCM00000012", - "partialVin": "000012", - "primaryVrm": "QA12CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA17QA", - "createdTimestamp": "2024-03-26T17:14:13.347Z", - "vin": "AUTOQAPCM00000012", - "partialVin": "000012", - "primaryVrm": "QA12CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": "m2", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA18QA", - "createdTimestamp": "2024-03-25T17:14:22.347Z", - "vin": "AUTOQAPCM00000022", - "partialVin": "000022", - "primaryVrm": "QA22CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA18QA", - "createdTimestamp": "2024-03-26T17:14:14.347Z", - "vin": "AUTOQAPCM00000022", - "partialVin": "000022", - "primaryVrm": "QA22CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": "m2", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA19QA", - "createdTimestamp": "2024-03-25T17:14:23.347Z", - "vin": "AUTOQAPCM00000003", - "partialVin": "000003", - "primaryVrm": "QA03CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA19QA", - "createdTimestamp": "2024-03-26T17:14:15.347Z", - "vin": "AUTOQAPCM00000003", - "partialVin": "000003", - "primaryVrm": "QA03CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": "m3", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA20QA", - "createdTimestamp": "2024-03-25T17:14:24.347Z", - "vin": "AUTOQAPCM00000013", - "partialVin": "000013", - "primaryVrm": "QA13CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA20QA", - "createdTimestamp": "2024-03-26T17:14:16.347Z", - "vin": "AUTOQAPCM00000013", - "partialVin": "000013", - "primaryVrm": "QA13CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": "m3", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA21QA", - "createdTimestamp": "2024-03-25T17:14:25.347Z", - "vin": "AUTOQAPCM00000033", - "partialVin": "000033", - "primaryVrm": "QA33CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2019-01-16T12:24:38.027Z", - "techRecord_dispensations": "None", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_lastUpdatedAt": "2022-11-16T21:43:03.236Z", - "techRecord_lastUpdatedById": "10000009", - "techRecord_lastUpdatedByName": "CVS Automation9", - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "archived", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA21QA", - "createdTimestamp": "2024-03-26T17:14:17.347Z", - "vin": "AUTOQAPCM00000033", - "partialVin": "000033", - "primaryVrm": "QA33CTM", - "secondaryVrms": [ - "X71LTA" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 0, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "A", - "techRecord_axles_0_tyres_speedCategorySymbol": "j", - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 7100, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_0_weights_kerbWeight": 5018, - "techRecord_axles_0_weights_ladenWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 0, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "A", - "techRecord_axles_1_tyres_speedCategorySymbol": "j", - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 12600, - "techRecord_axles_1_weights_gbWeight": 11500, - "techRecord_axles_1_weights_kerbWeight": 8297, - "techRecord_axles_1_weights_ladenWeight": 11500, - "techRecord_bodyMake": "Plaxton", - "techRecord_bodyModel": "Tourismo", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakeCode": "171202", - "techRecord_brakes_brakeCode": "171202", - "techRecord_brakes_brakeCodeOriginal": "123", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2742, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 3857, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 7713, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 2130, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 3329, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 6658, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_retarderBrakeOne": "exhaust", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_chassisMake": "Mercedes", - "techRecord_chassisModel": "632,01", - "techRecord_coifDate": "2010-12-20", - "techRecord_conversionRefNo": "2", - "techRecord_createdAt": "2022-11-16T21:43:03.236Z", - "techRecord_createdById": "10000009", - "techRecord_createdByName": "CVS Automation9", - "techRecord_dispensations": "None", - "techRecord_euVehicleCategory": "m3", - "techRecord_grossDesignWeight": 19000, - "techRecord_grossGbWeight": 18000, - "techRecord_grossKerbWeight": 13315, - "techRecord_grossLadenWeight": 17140, - "techRecord_manufactureYear": 2010, - "techRecord_noOfAxles": 2, - "techRecord_ntaNumber": "7", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "COIF", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2011-01-05", - "techRecord_remarks": "None", - "techRecord_seatsLowerDeck": 50, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": false, - "techRecord_speedRestriction": 0, - "techRecord_standingCapacity": 0, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": false, - "techRecord_unladenWeight": 0, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "large", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "psv" - }, - { - "systemNumber": "VTA22QA", - "createdTimestamp": "2024-03-25T17:14:26.347Z", - "vin": "AUTOQAHCN00000002", - "partialVin": "957486", - "primaryVrm": "QA02CTN", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "n2", - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA23QA", - "createdTimestamp": "2024-03-25T17:14:27.347Z", - "vin": "AUTOQAHCN00000012", - "partialVin": "957486", - "primaryVrm": "QA12CTN", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "n2", - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA24QA", - "createdTimestamp": "2024-03-25T17:14:28.347Z", - "vin": "AUTOQAHCN00000022", - "partialVin": "957486", - "primaryVrm": "QA22CTN", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "n2", - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA25QA", - "createdTimestamp": "2024-03-25T17:14:29.347Z", - "vin": "AUTOQAHCN00000003", - "partialVin": "957486", - "primaryVrm": "QA03CTN", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "n3", - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA26QA", - "createdTimestamp": "2024-03-25T17:14:30.347Z", - "vin": "AUTOQAHCN00000013", - "partialVin": "957486", - "primaryVrm": "QA03CTN", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "n3", - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA27QA", - "createdTimestamp": "2024-03-25T17:14:31.347Z", - "vin": "AUTOQAHCN00000033", - "partialVin": "957486", - "primaryVrm": "QA33CTN", - "secondaryVrms": [ - "CT96DRG" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_tyres_dataTrAxles": 345, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "AB", - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": 1234, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 1800, - "techRecord_axles_0_weights_gbWeight": 1400, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 1900, - "techRecord_axles_1_weights_gbWeight": 1600, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_tyres_dataTrAxles": 345, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "AB", - "techRecord_axles_2_tyres_speedCategorySymbol": "a7", - "techRecord_axles_2_tyres_tyreCode": 5678, - "techRecord_axles_2_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_2_weights_designWeight": 1900, - "techRecord_axles_2_weights_gbWeight": 1600, - "techRecord_axles_3_axleNumber": 4, - "techRecord_axles_3_tyres_dataTrAxles": 345, - "techRecord_axles_3_tyres_fitmentCode": "single", - "techRecord_axles_3_tyres_plyRating": "AB", - "techRecord_axles_3_tyres_speedCategorySymbol": "a7", - "techRecord_axles_3_tyres_tyreCode": 5678, - "techRecord_axles_3_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_3_weights_designWeight": 1900, - "techRecord_axles_3_weights_gbWeight": 1600, - "techRecord_axles_4_axleNumber": 5, - "techRecord_axles_4_tyres_dataTrAxles": 345, - "techRecord_axles_4_tyres_fitmentCode": "single", - "techRecord_axles_4_tyres_plyRating": "AB", - "techRecord_axles_4_tyres_speedCategorySymbol": "a7", - "techRecord_axles_4_tyres_tyreCode": 5678, - "techRecord_axles_4_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_4_weights_designWeight": 1900, - "techRecord_axles_4_weights_gbWeight": 1600, - "techRecord_bodyType_code": "r", - "techRecord_bodyType_description": "refuse", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdgs", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "n3", - "techRecord_euroStandard": "7", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1900, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1700, - "techRecord_frontAxleTo5thWheelMax": 1500, - "techRecord_frontAxleTo5thWheelMin": 1200, - "techRecord_functionCode": "A", - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxTrainDesignWeight": 500, - "techRecord_maxTrainGbWeight": 1000, - "techRecord_model": "FM", - "techRecord_noOfAxles": 5, - "techRecord_notes": "test note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_reasonForCreation": "new vehicle", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 2000, - "techRecord_trainGbWeight": 1500, - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleSubclass_0": "string", - "techRecord_vehicleType": "hgv" - }, - { - "systemNumber": "VTA11QA", - "createdTimestamp": "2024-03-25T17:14:15.347Z", - "vin": "AUTOQATRA000000001", - "partialVin": "052593", - "trailerId": "Q111111", - "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "3", - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": "**", - "techRecord_adrDetails_applicantDetails_name": "***", - "techRecord_adrDetails_applicantDetails_postcode": "********", - "techRecord_adrDetails_applicantDetails_street": "********", - "techRecord_adrDetails_applicantDetails_town": "*****", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": false, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", - "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", - "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_permittedDangerousGoods_1": "AT", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", - "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", - "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, - "techRecord_adrDetails_tank_tankStatement_statement": "B", - "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", - "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", - "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", - "techRecord_adrDetails_weight": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 24, - "techRecord_axles_0_brakes_leverLength": 135, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 158, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": " ", - "techRecord_axles_0_tyres_tyreCode": 383, - "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_0_weights_designWeight": 8250, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 24, - "techRecord_axles_1_brakes_leverLength": 135, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 158, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": " ", - "techRecord_axles_1_tyres_tyreCode": 383, - "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_1_weights_designWeight": 8250, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 24, - "techRecord_axles_2_brakes_leverLength": 135, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 158, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": " ", - "techRecord_axles_2_tyres_tyreCode": 383, - "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_2_weights_designWeight": 8250, - "techRecord_axles_2_weights_gbWeight": 8000, - "techRecord_bodyType_code": "f", - "techRecord_bodyType_description": "flat", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "326577", - "techRecord_brakes_loadSensingValve": true, - "techRecord_conversionRefNo": " ", - "techRecord_couplingCenterToRearAxleMax": 9430, - "techRecord_couplingCenterToRearAxleMin": 9430, - "techRecord_couplingCenterToRearTrlMax": 11365, - "techRecord_couplingCenterToRearTrlMin": 11365, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", - "techRecord_dimensions_axleSpacing_0_axles": "1", - "techRecord_dimensions_axleSpacing_0_value": 1310, - "techRecord_dimensions_axleSpacing_1_axles": "2", - "techRecord_dimensions_axleSpacing_1_value": 1310, - "techRecord_dimensions_length": 12271, - "techRecord_dimensions_width": 2438, - "techRecord_firstUseDate": "0001-01-01", - "techRecord_frontAxleToRearAxle": 0, - "techRecord_grossDesignWeight": 39000, - "techRecord_grossGbWeight": 39000, - "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", - "techRecord_make": "DENNISON TRAILERS", - "techRecord_manufactureYear": 2005, - "techRecord_maxLoadOnCoupling": 15000, - "techRecord_model": " ", - "techRecord_noOfAxles": 3, - "techRecord_notes": "T/S 33 1/9/06", - "techRecord_ntaNumber": "N000394760", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 1935, - "techRecord_reasonForCreation": " ", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2005-01-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "VTA12QA", - "createdTimestamp": "2024-03-25T17:14:16.347Z", - "vin": "AUTOQATRA000000002", - "partialVin": "052593", - "trailerId": "Q111112", - "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "3", - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": "**", - "techRecord_adrDetails_applicantDetails_name": "***", - "techRecord_adrDetails_applicantDetails_postcode": "********", - "techRecord_adrDetails_applicantDetails_street": "********", - "techRecord_adrDetails_applicantDetails_town": "*****", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": false, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", - "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", - "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_permittedDangerousGoods_1": "AT", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", - "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", - "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, - "techRecord_adrDetails_tank_tankStatement_statement": "B", - "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", - "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", - "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", - "techRecord_adrDetails_weight": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 24, - "techRecord_axles_0_brakes_leverLength": 135, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 158, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": " ", - "techRecord_axles_0_tyres_tyreCode": 383, - "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_0_weights_designWeight": 8250, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 24, - "techRecord_axles_1_brakes_leverLength": 135, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 158, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": " ", - "techRecord_axles_1_tyres_tyreCode": 383, - "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_1_weights_designWeight": 8250, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 24, - "techRecord_axles_2_brakes_leverLength": 135, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 158, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": " ", - "techRecord_axles_2_tyres_tyreCode": 383, - "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_2_weights_designWeight": 8250, - "techRecord_axles_2_weights_gbWeight": 8000, - "techRecord_bodyType_code": "f", - "techRecord_bodyType_description": "flat", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "326577", - "techRecord_brakes_loadSensingValve": true, - "techRecord_conversionRefNo": " ", - "techRecord_couplingCenterToRearAxleMax": 9430, - "techRecord_couplingCenterToRearAxleMin": 9430, - "techRecord_couplingCenterToRearTrlMax": 11365, - "techRecord_couplingCenterToRearTrlMin": 11365, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", - "techRecord_dimensions_axleSpacing_0_axles": "1", - "techRecord_dimensions_axleSpacing_0_value": 1310, - "techRecord_dimensions_axleSpacing_1_axles": "2", - "techRecord_dimensions_axleSpacing_1_value": 1310, - "techRecord_dimensions_length": 12271, - "techRecord_dimensions_width": 2438, - "techRecord_firstUseDate": "0001-01-01", - "techRecord_frontAxleToRearAxle": 0, - "techRecord_grossDesignWeight": 39000, - "techRecord_grossGbWeight": 39000, - "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", - "techRecord_make": "DENNISON TRAILERS", - "techRecord_manufactureYear": 2005, - "techRecord_maxLoadOnCoupling": 15000, - "techRecord_model": " ", - "techRecord_noOfAxles": 3, - "techRecord_notes": "T/S 33 1/9/06", - "techRecord_ntaNumber": "N000394760", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 1935, - "techRecord_reasonForCreation": " ", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2005-01-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "VTA13QA", - "createdTimestamp": "2024-03-25T17:14:17.347Z", - "vin": "AUTOQATRA000000003", - "partialVin": "052593", - "trailerId": "Q111113", - "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "3", - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": "**", - "techRecord_adrDetails_applicantDetails_name": "***", - "techRecord_adrDetails_applicantDetails_postcode": "********", - "techRecord_adrDetails_applicantDetails_street": "********", - "techRecord_adrDetails_applicantDetails_town": "*****", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": false, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", - "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", - "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_permittedDangerousGoods_1": "AT", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", - "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", - "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, - "techRecord_adrDetails_tank_tankStatement_statement": "B", - "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", - "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", - "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", - "techRecord_adrDetails_weight": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 24, - "techRecord_axles_0_brakes_leverLength": 135, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 158, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": " ", - "techRecord_axles_0_tyres_tyreCode": 383, - "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_0_weights_designWeight": 8250, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 24, - "techRecord_axles_1_brakes_leverLength": 135, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 158, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": " ", - "techRecord_axles_1_tyres_tyreCode": 383, - "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_1_weights_designWeight": 8250, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 24, - "techRecord_axles_2_brakes_leverLength": 135, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 158, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": " ", - "techRecord_axles_2_tyres_tyreCode": 383, - "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_2_weights_designWeight": 8250, - "techRecord_axles_2_weights_gbWeight": 8000, - "techRecord_bodyType_code": "f", - "techRecord_bodyType_description": "flat", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "326577", - "techRecord_brakes_loadSensingValve": true, - "techRecord_conversionRefNo": " ", - "techRecord_couplingCenterToRearAxleMax": 9430, - "techRecord_couplingCenterToRearAxleMin": 9430, - "techRecord_couplingCenterToRearTrlMax": 11365, - "techRecord_couplingCenterToRearTrlMin": 11365, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", - "techRecord_dimensions_axleSpacing_0_axles": "1", - "techRecord_dimensions_axleSpacing_0_value": 1310, - "techRecord_dimensions_axleSpacing_1_axles": "2", - "techRecord_dimensions_axleSpacing_1_value": 1310, - "techRecord_dimensions_length": 12271, - "techRecord_dimensions_width": 2438, - "techRecord_firstUseDate": "0001-01-01", - "techRecord_frontAxleToRearAxle": 0, - "techRecord_grossDesignWeight": 39000, - "techRecord_grossGbWeight": 39000, - "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", - "techRecord_make": "DENNISON TRAILERS", - "techRecord_manufactureYear": 2005, - "techRecord_maxLoadOnCoupling": 15000, - "techRecord_model": " ", - "techRecord_noOfAxles": 3, - "techRecord_notes": "T/S 33 1/9/06", - "techRecord_ntaNumber": "N000394760", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 1935, - "techRecord_reasonForCreation": " ", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2005-01-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "VTA14QA", - "createdTimestamp": "2024-03-25T17:14:18.347Z", - "vin": "AUTOQATRA000000004", - "partialVin": "052593", - "trailerId": "Q111114", - "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "3", - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": "**", - "techRecord_adrDetails_applicantDetails_name": "***", - "techRecord_adrDetails_applicantDetails_postcode": "********", - "techRecord_adrDetails_applicantDetails_street": "********", - "techRecord_adrDetails_applicantDetails_town": "*****", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": false, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", - "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", - "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_permittedDangerousGoods_1": "AT", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", - "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", - "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, - "techRecord_adrDetails_tank_tankStatement_statement": "B", - "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", - "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", - "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", - "techRecord_adrDetails_weight": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 24, - "techRecord_axles_0_brakes_leverLength": 135, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 158, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": " ", - "techRecord_axles_0_tyres_tyreCode": 383, - "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_0_weights_designWeight": 8250, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 24, - "techRecord_axles_1_brakes_leverLength": 135, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 158, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": " ", - "techRecord_axles_1_tyres_tyreCode": 383, - "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_1_weights_designWeight": 8250, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 24, - "techRecord_axles_2_brakes_leverLength": 135, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 158, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": " ", - "techRecord_axles_2_tyres_tyreCode": 383, - "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_2_weights_designWeight": 8250, - "techRecord_axles_2_weights_gbWeight": 8000, - "techRecord_bodyType_code": "f", - "techRecord_bodyType_description": "flat", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "326577", - "techRecord_brakes_loadSensingValve": true, - "techRecord_conversionRefNo": " ", - "techRecord_couplingCenterToRearAxleMax": 9430, - "techRecord_couplingCenterToRearAxleMin": 9430, - "techRecord_couplingCenterToRearTrlMax": 11365, - "techRecord_couplingCenterToRearTrlMin": 11365, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", - "techRecord_dimensions_axleSpacing_0_axles": "1", - "techRecord_dimensions_axleSpacing_0_value": 1310, - "techRecord_dimensions_axleSpacing_1_axles": "2", - "techRecord_dimensions_axleSpacing_1_value": 1310, - "techRecord_dimensions_length": 12271, - "techRecord_dimensions_width": 2438, - "techRecord_firstUseDate": "0001-01-01", - "techRecord_frontAxleToRearAxle": 0, - "techRecord_grossDesignWeight": 39000, - "techRecord_grossGbWeight": 39000, - "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", - "techRecord_make": "DENNISON TRAILERS", - "techRecord_manufactureYear": 2005, - "techRecord_maxLoadOnCoupling": 15000, - "techRecord_model": " ", - "techRecord_noOfAxles": 3, - "techRecord_notes": "T/S 33 1/9/06", - "techRecord_ntaNumber": "N000394760", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 1935, - "techRecord_reasonForCreation": " ", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2005-01-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "VTA15QA", - "createdTimestamp": "2024-03-25T17:14:19.347Z", - "vin": "AUTOQATRA000000005", - "partialVin": "052593", - "trailerId": "Q111115", - "techRecord_adrDetails_additionalExaminerNotes": "Additional Examiner Notes", - "techRecord_adrDetails_additionalNotes_number_0": "3", - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": "**", - "techRecord_adrDetails_applicantDetails_name": "***", - "techRecord_adrDetails_applicantDetails_postcode": "********", - "techRecord_adrDetails_applicantDetails_street": "********", - "techRecord_adrDetails_applicantDetails_town": "*****", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": true, - "techRecord_adrDetails_brakeEndurance": false, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_documents_0": "3803A48603D2440A802570DD0036C574_A00052593_filename1.pdf", - "techRecord_adrDetails_documents_1": "3803A48603D2440A802570DD0036C574_A00052593_filename3.pdf", - "techRecord_adrDetails_documents_2": "3803A48603D2440A802570DD0036C574_A00052593_filename2.pdf", - "techRecord_adrDetails_listStatementApplicable": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_permittedDangerousGoods_1": "AT", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": "L4BN", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "CROSSLAND TANKERS", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "CTB296ST0644", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "GB/FT/TCHSB/5055", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "HSB/5640", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicExpiryDate": "2017-12-11", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3PeriodicNumber": "GB/M/14/008953", - "techRecord_adrDetails_tank_tankDetails_tc3Details_0_tc3Type": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": "2006", - "techRecord_adrDetails_tank_tankStatement_productList": "TARS LIQUID CLASS 3 UN NO. 1999 ELEVATED TEMPERATURE LIQUID FLAMMABLE NOS CLASS 3 UN NO. 3256 ELEVATED TEMPERATURE LIQUID NOS CLASS 9 UN NO. 3257", - "techRecord_adrDetails_tank_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankStatement_productListUnNo_0": null, - "techRecord_adrDetails_tank_tankStatement_statement": "B", - "techRecord_adrDetails_tank_tankStatement_substancesPermitted": "B", - "techRecord_adrDetails_vehicleDetails_approvalDate": "2016-11-09", - "techRecord_adrDetails_vehicleDetails_type": "SEMI TRAILER TANK", - "techRecord_adrDetails_weight": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 24, - "techRecord_axles_0_brakes_leverLength": 135, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 158, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": " ", - "techRecord_axles_0_tyres_tyreCode": 383, - "techRecord_axles_0_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_0_weights_designWeight": 8250, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 24, - "techRecord_axles_1_brakes_leverLength": 135, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 158, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": " ", - "techRecord_axles_1_tyres_tyreCode": 383, - "techRecord_axles_1_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_1_weights_designWeight": 8250, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 24, - "techRecord_axles_2_brakes_leverLength": 135, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 158, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": " ", - "techRecord_axles_2_tyres_tyreCode": 383, - "techRecord_axles_2_tyres_tyreSize": "385/65-22.5", - "techRecord_axles_2_weights_designWeight": 8250, - "techRecord_axles_2_weights_gbWeight": 8000, - "techRecord_bodyType_code": "f", - "techRecord_bodyType_description": "flat", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "326577", - "techRecord_brakes_loadSensingValve": true, - "techRecord_conversionRefNo": " ", - "techRecord_couplingCenterToRearAxleMax": 9430, - "techRecord_couplingCenterToRearAxleMin": 9430, - "techRecord_couplingCenterToRearTrlMax": 11365, - "techRecord_couplingCenterToRearTrlMin": 11365, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2016-03-04T11:25:12.000000Z", - "techRecord_dimensions_axleSpacing_0_axles": "1", - "techRecord_dimensions_axleSpacing_0_value": 1310, - "techRecord_dimensions_axleSpacing_1_axles": "2", - "techRecord_dimensions_axleSpacing_1_value": 1310, - "techRecord_dimensions_length": 12271, - "techRecord_dimensions_width": 2438, - "techRecord_firstUseDate": "0001-01-01", - "techRecord_frontAxleToRearAxle": 0, - "techRecord_grossDesignWeight": 39000, - "techRecord_grossGbWeight": 39000, - "techRecord_lastUpdatedAt": "2020-01-10T14:04:01.000000Z", - "techRecord_make": "DENNISON TRAILERS", - "techRecord_manufactureYear": 2005, - "techRecord_maxLoadOnCoupling": 15000, - "techRecord_model": " ", - "techRecord_noOfAxles": 3, - "techRecord_notes": "T/S 33 1/9/06", - "techRecord_ntaNumber": "N000394760", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 1935, - "techRecord_reasonForCreation": " ", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2005-01-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "90000015", - "createdTimestamp": "AUTOQATRA000000012024-03-25T17:14:23.349Z", - "vin": "0", - "partialVin": "000010", - "trailerId": "Q111120", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_authIntoService": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes": null, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 150, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 9000, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes": null, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 150, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 9000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes": null, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 150, - "techRecord_axles_2_tyres_fitmentCode": "double", - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_tyreCode": 428, - "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_2_weights_designWeight": 9000, - "techRecord_axles_2_weights_eecWeight": null, - "techRecord_axles_2_weights_gbWeight": 8000, - "techRecord_bodyType_code": "y", - "techRecord_bodyType_description": "car transporter", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": "10101", - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2023-04-24T09:45:38.141Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": "o4", - "techRecord_firstUseDate": "2023-02-23", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 41000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 38000, - "techRecord_lastUpdatedAt": "2023-04-24T09:45:56.512Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_letterOfAuth": null, - "techRecord_make": "ESTEPE", - "techRecord_manufacturerDetails": null, - "techRecord_manufactureYear": 2022, - "techRecord_maxLoadOnCoupling": null, - "techRecord_microfilm": null, - "techRecord_model": "CT-2/3", - "techRecord_noOfAxles": 3, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-car transporter", - "techRecord_vehicleType": "trl" - }, - { - "systemNumber": "90000011", - "createdTimestamp": "2023-04-21T16:08:05.789Z", - "partialVin": "000006", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_authIntoService": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes": null, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 150, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 8000, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_bodyType_code": "l", - "techRecord_bodyType_description": "low loader", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": "01234", - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2023-04-21T16:08:05.789Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2023-01-10", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 8000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 8000, - "techRecord_lastUpdatedAt": "2023-04-21T16:08:36.515Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_letterOfAuth": null, - "techRecord_make": "CRANE FRUEHAUF", - "techRecord_manufacturerDetails": null, - "techRecord_manufactureYear": 2022, - "techRecord_maxLoadOnCoupling": null, - "techRecord_microfilm": null, - "techRecord_model": "CF-1000", - "techRecord_noOfAxles": 1, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "VTA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "Q111116", - "vin": "AUTOQATRA00000006" - }, - { - "systemNumber": "90000012", - "createdTimestamp": "2023-04-24T08:53:00.584Z", - "partialVin": "000007", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_authIntoService": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes": null, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 124, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 642, - "techRecord_axles_0_tyres_tyreSize": "215/75-17.5", - "techRecord_axles_0_weights_designWeight": 4500, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 4500, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 124, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 642, - "techRecord_axles_1_tyres_tyreSize": "215/75-17.5", - "techRecord_axles_1_weights_designWeight": 4500, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 4500, - "techRecord_bodyType_code": "t", - "techRecord_bodyType_description": "tipper", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": "08976", - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2023-04-24T08:53:00.584Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2023-02-01", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 10000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 10000, - "techRecord_letterOfAuth": null, - "techRecord_make": "BROSHUIS", - "techRecord_manufacturerDetails": null, - "techRecord_manufactureYear": 2022, - "techRecord_maxLoadOnCoupling": null, - "techRecord_microfilm": null, - "techRecord_model": "BS-2", - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "VTA QA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "Q111117", - "vin": "AUTOQATRA00000007" - }, - { - "systemNumber": "90000013", - "createdTimestamp": "2023-04-24T08:51:16.063Z", - "partialVin": "000008", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_authIntoService": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes": null, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 150, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 10000, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 10000, - "techRecord_bodyType_code": "f", - "techRecord_bodyType_description": "flat", - "techRecord_brakes_antilockBrakingSystem": false, - "techRecord_brakes_dtpNumber": "10234", - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2023-04-24T08:51:16.063Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": "o4", - "techRecord_firstUseDate": "2023-01-10", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 11000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 11000, - "techRecord_letterOfAuth": null, - "techRecord_make": "A FARLOW ENGINEERING LTD", - "techRecord_manufacturerDetails": null, - "techRecord_manufactureYear": 2022, - "techRecord_maxLoadOnCoupling": null, - "techRecord_microfilm": null, - "techRecord_model": "AFE-1F", - "techRecord_noOfAxles": 1, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "VTA QA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "S", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "Q111118", - "vin": "AUTOQATRA00000008" - }, - { - "systemNumber": "90000014", - "createdTimestamp": "2023-04-24T09:37:27.096Z", - "partialVin": "000009", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_authIntoService": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes": null, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 148, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 456, - "techRecord_axles_0_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_0_weights_designWeight": 8000, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes": null, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 148, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 456, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": 8000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_bodyType_code": "b", - "techRecord_bodyType_description": "box", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": "10034", - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2023-04-24T09:37:27.096Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": "o4", - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 17000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 17000, - "techRecord_letterOfAuth": null, - "techRecord_make": "ANDOVER TRAILERS", - "techRecord_manufacturerDetails": null, - "techRecord_manufactureYear": 2022, - "techRecord_maxLoadOnCoupling": null, - "techRecord_microfilm": null, - "techRecord_model": "AT-2F", - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "VTA QA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2023-03-20", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "Q111119", - "vin": "AUTOQATRA00000009" - }, - { - "systemNumber": "90000015", - "createdTimestamp": "2023-04-24T09:45:56.512Z", - "partialVin": "000010", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_authIntoService": null, - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes": null, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 150, - "techRecord_axles_0_tyres_fitmentCode": "double", - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 9000, - "techRecord_axles_0_weights_eecWeight": null, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes": null, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 150, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 9000, - "techRecord_axles_1_weights_eecWeight": null, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes": null, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 150, - "techRecord_axles_2_tyres_fitmentCode": "double", - "techRecord_axles_2_tyres_plyRating": null, - "techRecord_axles_2_tyres_tyreCode": 428, - "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_2_weights_designWeight": 9000, - "techRecord_axles_2_weights_eecWeight": null, - "techRecord_axles_2_weights_gbWeight": 8000, - "techRecord_bodyType_code": "y", - "techRecord_bodyType_description": "car transporter", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": "10101", - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2023-04-24T09:45:56.512Z", - "techRecord_createdById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_createdByName": "Emyr Waters", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": "o4", - "techRecord_firstUseDate": "2023-02-23", - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 41000, - "techRecord_grossEecWeight": null, - "techRecord_grossGbWeight": 38000, - "techRecord_letterOfAuth": null, - "techRecord_make": "ESTEPE", - "techRecord_manufacturerDetails": null, - "techRecord_manufactureYear": 2022, - "techRecord_maxLoadOnCoupling": null, - "techRecord_microfilm": null, - "techRecord_model": "CT-2/3", - "techRecord_noOfAxles": 3, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "VTA QA Automation Data", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": true, - "techRecord_statusCode": "current", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-car transporter", - "techRecord_vehicleType": "trl", - "trailerId": "Q111120", - "vin": "AUTOQATRA00000010" - }, - { - "systemNumber": "1100077", - "createdTimestamp": "2024-03-25T17:14:18.340Z", - "partialVin": "956789", - "primaryVrm": "ZX345CV", - "secondaryVrms": [ - "CV543XZ" - ], - "vin": "P0123010956789", - "techRecord_vehicleSubclass_0": "string", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_numberOfWheelsDriven": 2, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "1", - "techRecord_vehicleClass_description": "motorbikes up to 200cc", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "motorcycle", - "techRecord_euVehicleCategory": "l1e-a", - "techRecord_recordCompleteness": "complete" - }, - { - "systemNumber": "XYZEP5JYOMM00011", - "createdTimestamp": "2024-03-25T17:14:15.342Z", - "partialVin": "400011", - "primaryVrm": "SJG1011", - "secondaryVrms": [ - "SVNSJG" - ], - "vin": "DP76UMK4DQLTOT400011", - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": "*****", - "techRecord_applicantDetails_address2": "*****", - "techRecord_applicantDetails_address3": "*****", - "techRecord_applicantDetails_emailAddress": "*************", - "techRecord_applicantDetails_name": "************", - "techRecord_applicantDetails_postCode": "*****", - "techRecord_applicantDetails_postTown": "*", - "techRecord_applicantDetails_telephoneNumber": "**************", - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1234", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 2, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": " ", - "techRecord_axles_0_tyres_tyreCode": 462, - "techRecord_axles_0_tyres_tyreSize": "12-22.5", - "techRecord_axles_0_weights_designWeight": 7500, - "techRecord_axles_0_weights_eecWeight": 7500, - "techRecord_axles_0_weights_gbWeight": 7100, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 2, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": " ", - "techRecord_axles_1_tyres_tyreCode": 462, - "techRecord_axles_1_tyres_tyreSize": "12-22.5", - "techRecord_axles_1_weights_designWeight": 13000, - "techRecord_axles_1_weights_eecWeight": 10000, - "techRecord_axles_1_weights_gbWeight": 9500, - "techRecord_bodyType_code": "o", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": "3798A", - "techRecord_conversionRefNo": " ", - "techRecord_createdAt": "2020-02-28T12:52:39.243Z", - "techRecord_createdById": "12345", - "techRecord_createdByName": "sean", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 10000, - "techRecord_dimensions_length": 10000, - "techRecord_dimensions_width": 2000, - "techRecord_drawbarCouplingFitted": false, - "techRecord_emissionsLimit": 20, - "techRecord_euroStandard": "2", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontVehicleTo5thWheelCouplingMax": 1000, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1000, - "techRecord_frontAxleTo5thWheelMax": 1000, - "techRecord_frontAxleTo5thWheelMin": 1000, - "techRecord_frontAxleToRearAxle": 1000, - "techRecord_fuelPropulsionSystem": "Electric", - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 33500, - "techRecord_grossEecWeight": 25000, - "techRecord_grossGbWeight": 25000, - "techRecord_make": "VOLVO", - "techRecord_manufactureYear": 1984, - "techRecord_maxTrainDesignWeight": 2800, - "techRecord_maxTrainEecWeight": 2500, - "techRecord_maxTrainGbWeight": 44000, - "techRecord_microfilm_microfilmDocumentType": "HGV COC + Int Plate", - "techRecord_microfilm_microfilmRollNumber": "12346", - "techRecord_microfilm_microfilmSerialNumber": "1234", - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car" - }, - { - "systemNumber": "9000001", - "createdTimestamp": "2024-05-24T09:16:08.314Z", - "partialVin": "R00001", - "primaryVrm": "FE01CAR", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:16:08.314Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New Record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "r", - "techRecord_vehicleType": "car", - "vin": "VTAU1AUT0CAR00001" - }, - { - "systemNumber": "9000002", - "createdTimestamp": "2024-05-24T09:20:21.658Z", - "partialVin": "R00002", - "primaryVrm": "FE02CAR", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:20:21.658Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleSubclass_1": "w", - "techRecord_vehicleType": "car", - "vin": "VTAU1AUT0CAR00002" - }, - { - "systemNumber": "9000003", - "createdTimestamp": "2024-05-24T09:20:21.658Z", - "partialVin": "R00003", - "primaryVrm": "FE03CAR", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:20:21.658Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "car", - "vin": "VTAU1AUT0CAR00003" - }, - { - "systemNumber": "9000004", - "createdTimestamp": "2024-05-24T09:20:21.658Z", - "partialVin": "R00004", - "primaryVrm": "FE04CAR", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:20:21.658Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "c", - "techRecord_vehicleType": "car", - "vin": "VTAU1AUT0CAR00004" - }, - { - "systemNumber": "9000005", - "createdTimestamp": "2024-05-24T09:20:21.658Z", - "partialVin": "R00005", - "primaryVrm": "FE05CAR", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:20:21.658Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "p", - "techRecord_vehicleType": "car", - "vin": "VTAU1AUT0CAR00005" - }, - { - "systemNumber": "9000006", - "createdTimestamp": "2024-05-24T09:29:16.089Z", - "partialVin": "V00001", - "primaryVrm": "FE01LGV", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-05-24T09:29:03.531Z", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "TST CVS CSCProcessingDEV1", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Additional Notes 1", - "techRecord_adrDetails_additionalNotes_number_0": "1", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "", - "techRecord_adrDetails_applicantDetails_city": "Swansea", - "techRecord_adrDetails_applicantDetails_name": "Joe Bloggs", - "techRecord_adrDetails_applicantDetails_postcode": "SA1 8AN", - "techRecord_adrDetails_applicantDetails_street": "Ellipse Building", - "techRecord_adrDetails_applicantDetails_town": "Swansea", - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_newCertificateRequested": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2024-04-01", - "techRecord_adrDetails_vehicleDetails_type": "Rigid box body", - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": "no", - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": "Ellipse Building", - "techRecord_applicantDetails_address2": "Padley Road", - "techRecord_applicantDetails_address3": "Swansea", - "techRecord_applicantDetails_emailAddress": "emyr.waters@dvsa.gov.uk", - "techRecord_applicantDetails_name": "DVSA", - "techRecord_applicantDetails_postCode": "SA1 8AN", - "techRecord_applicantDetails_postTown": "Swansea", - "techRecord_applicantDetails_telephoneNumber": "01792454000", - "techRecord_createdAt": "2024-05-24T09:29:16.089Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "n", - "techRecord_vehicleType": "lgv", - "vin": "VTAU1AUT0LGV00001" - }, - { - "systemNumber": "9000007", - "createdTimestamp": "2024-05-24T09:32:14.345Z", - "partialVin": "V00002", - "primaryVrm": "FE02LGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:32:14.345Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "r", - "techRecord_vehicleType": "lgv", - "vin": "VTAU1AUT0LGV00002" - }, - { - "systemNumber": "9000008", - "createdTimestamp": "2024-05-24T09:32:14.345Z", - "partialVin": "V00003", - "primaryVrm": "FE03LGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:32:14.345Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "p", - "techRecord_vehicleType": "lgv", - "vin": "VTAU1AUT0LGV00003" - }, - { - "systemNumber": "9000009", - "createdTimestamp": "2024-05-24T09:32:14.345Z", - "partialVin": "V00004", - "primaryVrm": "FE04LGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:32:14.345Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "t", - "techRecord_vehicleType": "lgv", - "vin": "VTAU1AUT0LGV00004" - }, - { - "systemNumber": "9000010", - "createdTimestamp": "2024-05-24T09:32:14.345Z", - "partialVin": "V00005", - "primaryVrm": "FE05LGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:32:14.345Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": null, - "techRecord_statusCode": "provisional", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleSubclass_0": "s", - "techRecord_vehicleType": "lgv", - "vin": "VTAU1AUT0LGV00005" - }, - { - "systemNumber": "9000011", - "createdTimestamp": "2024-05-24T09:38:22.874Z", - "partialVin": "LTRL01", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:38:22.874Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 1, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "99999999", - "vin": "VTAU1AUT0SMLTRL01" - }, - { - "systemNumber": "9000012", - "createdTimestamp": "2024-05-24T09:40:50.556Z", - "partialVin": "LTRL02", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:40:50.556Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "99999998", - "vin": "VTAU1AUT0SMLTRL02" - }, - { - "systemNumber": "9000013", - "createdTimestamp": "2024-05-24T09:42:31.314Z", - "partialVin": "LTRL03", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:42:31.314Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 1, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "99999997", - "vin": "VTAU1AUT0SMLTRL03" - }, - { - "systemNumber": "9000014", - "createdTimestamp": "2024-05-24T09:43:46.697Z", - "partialVin": "LTRL04", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:43:46.697Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "99999996", - "vin": "VTAU1AUT0SMLTRL04" - }, - { - "systemNumber": "9000015", - "createdTimestamp": "2024-05-24T09:45:40.622Z", - "partialVin": "LTRL05", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:45:40.622Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 3, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "99999995", - "vin": "VTAU1AUT0SMLTRL05" - }, - { - "systemNumber": "9000016", - "createdTimestamp": "2024-05-24T09:47:33.421Z", - "partialVin": "C00001", - "primaryVrm": "FE01MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:47:33.421Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": 2, - "techRecord_reasonForCreation": "New recored", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "2", - "techRecord_vehicleClass_description": "motorbikes over 200cc or with a sidecar", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle", - "vin": "VTAU1AUT0MCC00001" - }, - { - "systemNumber": "9000017", - "createdTimestamp": "2024-05-24T09:48:57.763Z", - "partialVin": "C00002", - "primaryVrm": "FE02MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:48:57.763Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "2", - "techRecord_vehicleClass_description": "motorbikes over 200cc or with a sidecar", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle", - "vin": "VTAU1AUT0MCC00002" - }, - { - "systemNumber": "9000018", - "createdTimestamp": "2024-05-24T09:50:57.703Z", - "partialVin": "C00003", - "primaryVrm": "FE03MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:50:57.703Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "1", - "techRecord_vehicleClass_description": "motorbikes up to 200cc", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle", - "vin": "VTAU1AUT0MCC00003" - }, - { - "systemNumber": "9000019", - "createdTimestamp": "2024-05-24T09:52:05.400Z", - "partialVin": "C00004", - "primaryVrm": "FE04MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:52:05.400Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": 3, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "3", - "techRecord_vehicleClass_description": "3 wheelers", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle", - "vin": "VTAU1AUT0MCC00004" - }, - { - "systemNumber": "9000020", - "createdTimestamp": "2024-05-24T09:54:49.704Z", - "partialVin": "C00005", - "primaryVrm": "FE05MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:54:49.704Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": 4, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "4", - "techRecord_vehicleClass_description": "MOT class 4", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle", - "vin": "VTAU1AUT0MCC00005" - }, - { - "systemNumber": "9000021", - "createdTimestamp": "2024-05-24T09:56:11.469Z", - "partialVin": "C00006", - "primaryVrm": "FE06MCC", - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_createdAt": "2024-05-24T09:56:11.469Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_euVehicleCategory": null, - "techRecord_manufactureYear": 2024, - "techRecord_noOfAxles": 2, - "techRecord_numberOfWheelsDriven": 2, - "techRecord_reasonForCreation": "New record", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "", - "techRecord_statusCode": "provisional", - "techRecord_vehicleClass_code": "1", - "techRecord_vehicleClass_description": "motorbikes up to 200cc", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "motorcycle", - "vin": "VTAU1AUT0MCC00006" - }, - { - "systemNumber": "9000027", - "createdTimestamp": "2024-08-29T13:37:44.430Z", - "partialVin": "01HGV1", - "primaryVrm": "FE01HGV", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-08-29T13:37:27.495Z", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "TST CVS CSCProcessingDEV1", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "Note 1", - "techRecord_adrDetails_additionalNotes_number_0": "3", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "354678", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": "I", - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_newCertificateRequested": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "Explosives (type 2)", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2024-08-01", - "techRecord_adrDetails_vehicleDetails_type": "Artic tractor", - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": "no", - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_approvalType": "IVA", - "techRecord_approvalTypeNumber": "RV426172", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 154, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "", - "techRecord_axles_0_tyres_tyreCode": 897, - "techRecord_axles_0_tyres_tyreSize": "315/70-22.5", - "techRecord_axles_0_weights_designWeight": 7500, - "techRecord_axles_0_weights_eecWeight": 7500, - "techRecord_axles_0_weights_gbWeight": 7500, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": 148, - "techRecord_axles_1_tyres_fitmentCode": "double", - "techRecord_axles_1_tyres_plyRating": "", - "techRecord_axles_1_tyres_tyreCode": 897, - "techRecord_axles_1_tyres_tyreSize": "315/70-22.5", - "techRecord_axles_1_weights_designWeight": 9500, - "techRecord_axles_1_weights_eecWeight": 9500, - "techRecord_axles_1_weights_gbWeight": 9500, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_parkingBrakeMrk": false, - "techRecord_axles_2_tyres_dataTrAxles": 148, - "techRecord_axles_2_tyres_fitmentCode": "double", - "techRecord_axles_2_tyres_plyRating": "", - "techRecord_axles_2_tyres_tyreCode": 897, - "techRecord_axles_2_tyres_tyreSize": "315/70-22.5", - "techRecord_axles_2_weights_designWeight": 9500, - "techRecord_axles_2_weights_eecWeight": 9500, - "techRecord_axles_2_weights_gbWeight": 9500, - "techRecord_bodyType_code": "a", - "techRecord_bodyType_description": "articulated", - "techRecord_brakes_dtpNumber": "7616S", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-08-29T13:37:44.430Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 3300, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 1350, - "techRecord_dimensions_length": 7000, - "techRecord_dimensions_width": 2540, - "techRecord_drawbarCouplingFitted": false, - "techRecord_emissionsLimit": 0.5, - "techRecord_euroStandard": "Euro 6", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": 5000, - "techRecord_frontAxleTo5thWheelMin": 5000, - "techRecord_frontAxleToRearAxle": 4650, - "techRecord_frontVehicleTo5thWheelCouplingMax": 6000, - "techRecord_frontVehicleTo5thWheelCouplingMin": 6000, - "techRecord_fuelPropulsionSystem": "Diesel", - "techRecord_functionCode": "A", - "techRecord_grossDesignWeight": 28000, - "techRecord_grossEecWeight": 26000, - "techRecord_grossGbWeight": 26000, - "techRecord_make": "SCANIA", - "techRecord_manufactureYear": 2024, - "techRecord_maxTrainDesignWeight": 0, - "techRecord_maxTrainEecWeight": 44000, - "techRecord_maxTrainGbWeight": 44000, - "techRecord_model": "S-SLEEPER HIGHLINE", - "techRecord_noOfAxles": 3, - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "New ADR Record", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2024-07-01", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": false, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": false, - "techRecord_trainDesignWeight": 50000, - "techRecord_trainEecWeight": 44000, - "techRecord_trainGbWeight": 44000, - "techRecord_tyreUseCode": "2B", - "techRecord_variantNumber": "01", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "articulated", - "techRecord_vehicleType": "hgv", - "vin": "VTAU1AUT0FE01HGV1" - }, - { - "systemNumber": "9000032", - "createdTimestamp": "2024-08-29T13:56:40.388Z", - "partialVin": "999999", - "techRecord_adrDetails_additionalExaminerNotes_0_createdAtDate": "2024-08-29T13:56:22.348Z", - "techRecord_adrDetails_additionalExaminerNotes_0_lastUpdatedBy": "TST CVS CSCProcessingDEV1", - "techRecord_adrDetails_additionalExaminerNotes_0_note": "ADR tipping silo", - "techRecord_adrDetails_additionalNotes_number_0": "1A", - "techRecord_adrDetails_additionalNotes_number_1": "3", - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": "", - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": false, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": true, - "techRecord_adrDetails_declarationsSeen": true, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": true, - "techRecord_adrDetails_newCertificateRequested": false, - "techRecord_adrDetails_permittedDangerousGoods_0": "FP <61 (FL)", - "techRecord_adrDetails_permittedDangerousGoods_1": "AT", - "techRecord_adrDetails_tank_tankDetails_specialProvisions": "Some special provisions", - "techRecord_adrDetails_tank_tankDetails_tankCode": "2II", - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": "Kassbohrer", - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": "123", - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_select": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": "Substances permitted under the tank code and any special provisions specified in 9 may be carried", - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": "456", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": "", - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": "initial", - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": 2024, - "techRecord_adrDetails_vehicleDetails_approvalDate": "2024-06-30", - "techRecord_adrDetails_vehicleDetails_type": "Semi trailer tank", - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": "no", - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_approvalType": "IVA", - "techRecord_approvalTypeNumber": "RV246801", - "techRecord_authIntoService_dateAuthorised": "2024-06-28", - "techRecord_authIntoService_dateReceived": "2024-06-21", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 123, - "techRecord_axles_0_brakes_leverLength": 12, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": 156, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "", - "techRecord_axles_0_tyres_tyreCode": 428, - "techRecord_axles_0_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_0_weights_designWeight": 8000, - "techRecord_axles_0_weights_eecWeight": 8000, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_brakes_brakeActuator": 123, - "techRecord_axles_1_brakes_leverLength": 12, - "techRecord_axles_1_brakes_springBrakeParking": true, - "techRecord_axles_1_parkingBrakeMrk": true, - "techRecord_axles_1_tyres_dataTrAxles": 156, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "", - "techRecord_axles_1_tyres_tyreCode": 428, - "techRecord_axles_1_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_1_weights_designWeight": 8000, - "techRecord_axles_1_weights_eecWeight": 8000, - "techRecord_axles_1_weights_gbWeight": 8000, - "techRecord_axles_2_axleNumber": 3, - "techRecord_axles_2_brakes_brakeActuator": 123, - "techRecord_axles_2_brakes_leverLength": 12, - "techRecord_axles_2_brakes_springBrakeParking": true, - "techRecord_axles_2_parkingBrakeMrk": true, - "techRecord_axles_2_tyres_dataTrAxles": 156, - "techRecord_axles_2_tyres_fitmentCode": "single", - "techRecord_axles_2_tyres_plyRating": "", - "techRecord_axles_2_tyres_tyreCode": 428, - "techRecord_axles_2_tyres_tyreSize": "315/80-22.5", - "techRecord_axles_2_weights_designWeight": 8000, - "techRecord_axles_2_weights_eecWeight": 8000, - "techRecord_axles_2_weights_gbWeight": 8000, - "techRecord_bodyType_code": "o", - "techRecord_bodyType_description": "other tanker", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_dtpNumber": "426741", - "techRecord_brakes_loadSensingValve": true, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": 10000, - "techRecord_couplingCenterToRearAxleMin": 10000, - "techRecord_couplingCenterToRearTrlMax": 11000, - "techRecord_couplingCenterToRearTrlMin": 11000, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2024-08-29T13:56:40.388Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": 1400, - "techRecord_dimensions_axleSpacing_1_axles": "2-3", - "techRecord_dimensions_axleSpacing_1_value": 1400, - "techRecord_dimensions_length": 12000, - "techRecord_dimensions_width": 2500, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": "2024-07-01", - "techRecord_frameDescription": "Channel section", - "techRecord_frontAxleToRearAxle": 4200, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 24000, - "techRecord_grossEecWeight": 24000, - "techRecord_grossGbWeight": 24000, - "techRecord_make": "KASSBOHRER", - "techRecord_manufactureYear": 2024, - "techRecord_maxLoadOnCoupling": 14000, - "techRecord_model": "KSSK 60", - "techRecord_noOfAxles": 3, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": 1500, - "techRecord_reasonForCreation": "New ADR record", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": true, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": "2B", - "techRecord_variantNumber": "05", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "semi-trailer", - "techRecord_vehicleType": "trl", - "trailerId": "C9999999", - "vin": "VTAU1AUT0C9999999" - }, - { - "systemNumber": "9000033", - "createdTimestamp": "2024-08-30T11:22:44.578Z", - "partialVin": "999998", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": false, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_approvalType": "IVA", - "techRecord_approvalTypeNumber": "RV537923", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_brakes_brakeActuator": 123, - "techRecord_axles_0_brakes_leverLength": 10, - "techRecord_axles_0_brakes_springBrakeParking": true, - "techRecord_axles_0_parkingBrakeMrk": true, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 8000, - "techRecord_axles_0_weights_eecWeight": 8000, - "techRecord_axles_0_weights_gbWeight": 8000, - "techRecord_bodyType_code": "f", - "techRecord_bodyType_description": "flat", - "techRecord_brakes_antilockBrakingSystem": false, - "techRecord_brakes_dtpNumber": "253689", - "techRecord_brakes_loadSensingValve": false, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": 6000, - "techRecord_couplingCenterToRearTrlMax": 8000, - "techRecord_couplingCenterToRearTrlMin": 8000, - "techRecord_couplingType": "B", - "techRecord_createdAt": "2024-08-30T11:22:44.578Z", - "techRecord_createdById": "b51dce4a-d661-49d6-a8b8-83dfc1c47cb7", - "techRecord_createdByName": "TST CVS CSCProcessingDEV1", - "techRecord_departmentalVehicleMarker": false, - "techRecord_dimensions_length": 8000, - "techRecord_dimensions_width": 2500, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": "2024-08-01", - "techRecord_frameDescription": "Tubular", - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 8000, - "techRecord_grossEecWeight": 8000, - "techRecord_grossGbWeight": 8000, - "techRecord_make": "A FARLOW ENGINEERING LTD", - "techRecord_manufactureYear": 2024, - "techRecord_maxLoadOnCoupling": 1000, - "techRecord_model": "1ACAD", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "", - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": 2000, - "techRecord_reasonForCreation": "New trailer record", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": true, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": "A", - "techRecord_tyreUseCode": null, - "techRecord_variantNumber": "03", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C9999998", - "vin": "VTAU1AUT0C9999998" - }, - { - "systemNumber": "4000002", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO01HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000001" - }, - { - "systemNumber": "4000003", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO02HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000002" - }, - { - "systemNumber": "4000004", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO03HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000003" - }, - { - "systemNumber": "4000005", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO04HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000004" - }, - { - "systemNumber": "4000006", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO05HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000005" - }, - { - "systemNumber": "4000007", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO06HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000006" - }, - { - "systemNumber": "4000008", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO07HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000007" - }, - { - "systemNumber": "4000009", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO08HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000008" - }, - { - "systemNumber": "4000010", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO09HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000009" - }, - { - "systemNumber": "4000011", - "createdTimestamp": "2024-09-09T09:23:44.664Z", - "partialVin": "000001", - "primaryVrm": "AUTO10HGV", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_dtpNumber": null, - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:23:44.664Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainEecWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_offRoad": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainEecWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "AUT0MAT10N0000010" - }, - { - "systemNumber": "4000012", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO01PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000011" - }, - { - "systemNumber": "4000013", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO02PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000012" - }, - { - "systemNumber": "4000014", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO03PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000013" - }, - { - "systemNumber": "4000015", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO04PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000014" - }, - { - "systemNumber": "4000016", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO05PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000015" - }, - { - "systemNumber": "4000017", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO06PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000016" - }, - { - "systemNumber": "4000018", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO07PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000017" - }, - { - "systemNumber": "4000019", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO08PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000018" - }, - { - "systemNumber": "4000020", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO09PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000019" - }, - { - "systemNumber": "4000021", - "createdTimestamp": "2024-09-09T09:34:49.583Z", - "partialVin": "000011", - "primaryVrm": "AUTO10PSV", - "techRecord_alterationMarker": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_0_weights_kerbWeight": 1, - "techRecord_axles_0_weights_ladenWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_speedCategorySymbol": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_axles_1_weights_kerbWeight": 1, - "techRecord_axles_1_weights_ladenWeight": 1, - "techRecord_bodyMake": "CAETANO", - "techRecord_bodyModel": "", - "techRecord_bodyType_code": "s", - "techRecord_bodyType_description": "single decker", - "techRecord_brakes_brakeCode": null, - "techRecord_brakes_brakeCodeOriginal": null, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 1, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 0, - "techRecord_brakes_dataTrBrakeOne": null, - "techRecord_brakes_dataTrBrakeThree": null, - "techRecord_brakes_dataTrBrakeTwo": null, - "techRecord_brakes_dtpNumber": "007006", - "techRecord_brakes_retarderBrakeOne": null, - "techRecord_brakes_retarderBrakeTwo": null, - "techRecord_chassisMake": "AEC", - "techRecord_chassisModel": "RELIANCE", - "techRecord_coifDate": "", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2024-09-09T09:34:49.583Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_height": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_emissionsLimit": null, - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_fuelPropulsionSystem": null, - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_grossKerbWeight": 2, - "techRecord_grossLadenWeight": 2, - "techRecord_manufactureYear": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_modelLiteral": null, - "techRecord_noOfAxles": 2, - "techRecord_numberOfSeatbelts": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_seatbeltInstallationApprovalDate": null, - "techRecord_seatsLowerDeck": 20, - "techRecord_seatsUpperDeck": 0, - "techRecord_speedLimiterMrk": null, - "techRecord_speedRestriction": null, - "techRecord_standingCapacity": null, - "techRecord_statusCode": "provisional", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_unladenWeight": null, - "techRecord_vehicleClass_code": "s", - "techRecord_vehicleClass_description": "small psv (ie: less than or equal to 22 seats)", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleSize": "small", - "techRecord_vehicleType": "psv", - "vin": "AUT0MAT10N0000020" - }, - { - "systemNumber": "4400001", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT01TRL", - "vin": "AUT0MAT10N0000021" - }, - { - "systemNumber": "4400002", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT02TRL", - "vin": "AUT0MAT10N0000022" - }, - { - "systemNumber": "4400003", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT03TRL", - "vin": "AUT0MAT10N0000023" - }, - { - "systemNumber": "4400004", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT04TRL", - "vin": "AUT0MAT10N0000024" - }, - { - "systemNumber": "4400005", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT05TRL", - "vin": "AUT0MAT10N0000025" - }, - { - "systemNumber": "4400006", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT06TRL", - "vin": "AUT0MAT10N0000026" - }, - { - "systemNumber": "4400007", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT07TRL", - "vin": "AUT0MAT10N0000027" - }, - { - "systemNumber": "4400008", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT08TRL", - "vin": "AUT0MAT10N0000028" - }, - { - "systemNumber": "4400009", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT09TRL", - "vin": "AUT0MAT10N0000029" - }, - { - "systemNumber": "4400010", - "createdTimestamp": "2024-09-09T09:59:39.488Z", - "partialVin": "000021", - "techRecord_adrDetails_additionalExaminerNotes": null, - "techRecord_adrDetails_additionalNotes_number": null, - "techRecord_adrDetails_adrCertificateNotes": null, - "techRecord_adrDetails_adrTypeApprovalNo": null, - "techRecord_adrDetails_applicantDetails_city": null, - "techRecord_adrDetails_applicantDetails_name": null, - "techRecord_adrDetails_applicantDetails_postcode": null, - "techRecord_adrDetails_applicantDetails_street": null, - "techRecord_adrDetails_applicantDetails_town": null, - "techRecord_adrDetails_batteryListNumber": null, - "techRecord_adrDetails_brakeDeclarationIssuer": null, - "techRecord_adrDetails_brakeDeclarationsSeen": null, - "techRecord_adrDetails_brakeEndurance": null, - "techRecord_adrDetails_compatibilityGroupJ": null, - "techRecord_adrDetails_dangerousGoods": false, - "techRecord_adrDetails_declarationsSeen": null, - "techRecord_adrDetails_documents": null, - "techRecord_adrDetails_listStatementApplicable": null, - "techRecord_adrDetails_m145Statement": null, - "techRecord_adrDetails_memosApply": null, - "techRecord_adrDetails_newCertificateRequested": null, - "techRecord_adrDetails_permittedDangerousGoods": null, - "techRecord_adrDetails_tank_tankDetails_specialProvisions": null, - "techRecord_adrDetails_tank_tankDetails_tankCode": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturer": null, - "techRecord_adrDetails_tank_tankDetails_tankManufacturerSerialNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productList": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListRefNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_productListUnNo": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_statement": null, - "techRecord_adrDetails_tank_tankDetails_tankStatement_substancesPermitted": null, - "techRecord_adrDetails_tank_tankDetails_tankTypeAppNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateApprovalNo": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2IntermediateExpiryDate": null, - "techRecord_adrDetails_tank_tankDetails_tc2Details_tc2Type": null, - "techRecord_adrDetails_tank_tankDetails_tc3Details": null, - "techRecord_adrDetails_tank_tankDetails_yearOfManufacture": null, - "techRecord_adrDetails_vehicleDetails_approvalDate": null, - "techRecord_adrDetails_vehicleDetails_type": null, - "techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys": null, - "techRecord_adrDetails_weight": null, - "techRecord_alterationMarker": null, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_applicationId": "", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": 1, - "techRecord_axles_0_weights_eecWeight": 1, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": false, - "techRecord_axles_1_tyres_dataTrAxles": null, - "techRecord_axles_1_tyres_fitmentCode": null, - "techRecord_axles_1_tyres_plyRating": null, - "techRecord_axles_1_tyres_tyreCode": null, - "techRecord_axles_1_tyres_tyreSize": null, - "techRecord_axles_1_weights_designWeight": 1, - "techRecord_axles_1_weights_eecWeight": 1, - "techRecord_axles_1_weights_gbWeight": 1, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": "other", - "techRecord_brakes_antilockBrakingSystem": null, - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": null, - "techRecord_centreOfRearmostAxleToRearOfTrl": null, - "techRecord_conversionRefNo": null, - "techRecord_couplingCenterToRearAxleMax": null, - "techRecord_couplingCenterToRearAxleMin": null, - "techRecord_couplingCenterToRearTrlMax": null, - "techRecord_couplingCenterToRearTrlMin": null, - "techRecord_couplingType": null, - "techRecord_createdAt": "2024-09-09T09:59:39.488Z", - "techRecord_createdById": "13cd0e10-80bb-4a03-b484-a3f6eab320b3", - "techRecord_createdByName": "TST.SVSA.DEV2", - "techRecord_departmentalVehicleMarker": null, - "techRecord_dimensions_axleSpacing_0_axles": "1-2", - "techRecord_dimensions_axleSpacing_0_value": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_euVehicleCategory": null, - "techRecord_firstUseDate": null, - "techRecord_frameDescription": null, - "techRecord_frontAxleToRearAxle": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": 2, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 2, - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxLoadOnCoupling": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_purchaserDetails_address1": null, - "techRecord_purchaserDetails_address2": null, - "techRecord_purchaserDetails_address3": null, - "techRecord_purchaserDetails_emailAddress": null, - "techRecord_purchaserDetails_faxNumber": null, - "techRecord_purchaserDetails_name": null, - "techRecord_purchaserDetails_postCode": null, - "techRecord_purchaserDetails_postTown": null, - "techRecord_purchaserDetails_purchaserNotes": null, - "techRecord_purchaserDetails_telephoneNumber": null, - "techRecord_rearAxleToRearTrl": null, - "techRecord_reasonForCreation": "Creation", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": null, - "techRecord_roadFriendly": null, - "techRecord_statusCode": "provisional", - "techRecord_suspensionType": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "other", - "techRecord_vehicleType": "trl", - "trailerId": "AUT10TRL", - "vin": "AUT0MAT10N0000030" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000001", - "systemNumber": "BPS000001", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000001" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000002", - "systemNumber": "BPS000002", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000002" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000003", - "systemNumber": "BPS000003", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000003" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000004", - "systemNumber": "BPS000004", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000004" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000005", - "systemNumber": "BPS000005", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000005" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000006", - "systemNumber": "BPS000006", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000006" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000007", - "systemNumber": "BPS000007", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000007" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000008", - "systemNumber": "BPS000008", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000008" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000009", - "systemNumber": "BPS000009", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000009" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000010", - "systemNumber": "BPS000010", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000010" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000011", - "systemNumber": "BPS000011", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000011" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000012", - "systemNumber": "BPS000012", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000012" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000013", - "systemNumber": "BPS000013", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000013" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000014", - "systemNumber": "BPS000014", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000014" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000015", - "systemNumber": "BPS000015", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000015" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000016", - "systemNumber": "BPS000016", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000016" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000017", - "systemNumber": "BPS000017", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000017" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000018", - "systemNumber": "BPS000018", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000018" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000019", - "systemNumber": "BPS000019", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000019" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000020", - "systemNumber": "BPS000020", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000020" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000021", - "systemNumber": "BPS000021", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000021" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000022", - "systemNumber": "BPS000022", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000022" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000023", - "systemNumber": "BPS000023", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000023" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000024", - "systemNumber": "BPS000024", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000024" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000025", - "systemNumber": "BPS000025", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000025" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000026", - "systemNumber": "BPS000026", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000026" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000027", - "systemNumber": "BPS000027", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000027" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000028", - "systemNumber": "BPS000028", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000028" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000029", - "systemNumber": "BPS000029", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000029" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000030", - "systemNumber": "BPS000030", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000030" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000031", - "systemNumber": "BPS000031", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000031" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000032", - "systemNumber": "BPS000032", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000032" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000033", - "systemNumber": "BPS000033", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000033" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000034", - "systemNumber": "BPS000034", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000034" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000035", - "systemNumber": "BPS000035", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000035" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000036", - "systemNumber": "BPS000036", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000036" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000037", - "systemNumber": "BPS000037", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000037" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000038", - "systemNumber": "BPS000038", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000038" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000039", - "systemNumber": "BPS000039", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000039" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000040", - "systemNumber": "BPS000040", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000040" - }, - { - "systemNumber": "BPS000041", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000041", - "primaryVrm": "000041Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000041", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000042", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000042", - "primaryVrm": "000042Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000042", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000043", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000043", - "primaryVrm": "000043Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000043", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000044", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000044", - "primaryVrm": "000044Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000044", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000045", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000045", - "primaryVrm": "000045Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000045", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000046", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000046", - "primaryVrm": "000046Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000046", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000047", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000047", - "primaryVrm": "000047Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000047", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000048", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000048", - "primaryVrm": "000048Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000048", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000049", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000049", - "primaryVrm": "000049Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000049", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000050", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000050", - "primaryVrm": "000050Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000050", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000051", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000051", - "primaryVrm": "000051Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000051", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000052", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000052", - "primaryVrm": "000052Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000052", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000053", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000053", - "primaryVrm": "000053Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000053", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000054", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000054", - "primaryVrm": "000054Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000054", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000055", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000055", - "primaryVrm": "000055Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000055", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000056", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000056", - "primaryVrm": "000056Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000056", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000057", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000057", - "primaryVrm": "000057Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000057", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000058", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000058", - "primaryVrm": "000058Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000058", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000059", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000059", - "primaryVrm": "000059Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000059", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000060", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000060", - "primaryVrm": "000060Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000060", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000061", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000061", - "primaryVrm": "000061Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000061", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000062", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000062", - "primaryVrm": "000062Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000062", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000063", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000063", - "primaryVrm": "000063Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000063", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000064", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000064", - "primaryVrm": "000064Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000064", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000065", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000065", - "primaryVrm": "000065Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000065", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000066", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000066", - "primaryVrm": "000066Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000066", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000067", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000067", - "primaryVrm": "000067Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000067", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000068", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000068", - "primaryVrm": "000068Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000068", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000069", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000069", - "primaryVrm": "000069Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000069", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000070", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000070", - "primaryVrm": "000070Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000070", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000071", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000071", - "primaryVrm": "000071Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000071", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000072", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000072", - "primaryVrm": "000072Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000072", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000073", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000073", - "primaryVrm": "000073Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000073", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000074", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000074", - "primaryVrm": "000074Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000074", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000075", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000075", - "primaryVrm": "000075Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000075", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000076", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000076", - "primaryVrm": "000076Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000076", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000077", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000077", - "primaryVrm": "000077Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000077", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000078", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000078", - "primaryVrm": "000078Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000078", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000079", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000079", - "primaryVrm": "000079Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000079", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000080", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000080", - "primaryVrm": "000080Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000080", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000081", - "systemNumber": "BPS000081", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000081" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000082", - "systemNumber": "BPS000082", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000082" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000083", - "systemNumber": "BPS000083", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000083" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000084", - "systemNumber": "BPS000084", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000084" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000085", - "systemNumber": "BPS000085", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_model": "F06", - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000085" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000086", - "systemNumber": "BPS000086", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000086" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000087", - "systemNumber": "BPS000087", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000087" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000088", - "systemNumber": "BPS000088", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000088" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000089", - "systemNumber": "BPS000089", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000089" - }, - { - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000090", - "systemNumber": "BPS000090", - "techRecord_antilockBrakingSystem": true, - "techRecord_bodyType_code": "p", - "techRecord_bodyType_description": "petrol/oil tanker", - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": "sdsdg", - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": "7891234", - "techRecord_couplingCenterToRearAxleMax": 900, - "techRecord_couplingCenterToRearAxleMin": 1000, - "techRecord_couplingCenterToRearTrlMax": 700, - "techRecord_couplingCenterToRearTrlMin": 800, - "techRecord_couplingType": "F", - "techRecord_createdAt": "2023-06-16T14:17:05.788Z", - "techRecord_dimensions_length": 7500, - "techRecord_dimensions_width": 2200, - "techRecord_drawbarCouplingFitted": true, - "techRecord_euVehicleCategory": "o3", - "techRecord_firstUseDate": "2019-06-24", - "techRecord_frontAxleToRearAxle": 1700, - "techRecord_grossKerbWeight": 2500, - "techRecord_grossLadenWeight": 3000, - "techRecord_lastUpdatedAt": "2023-06-16T14:17:50.348Z", - "techRecord_lastUpdatedById": "28e4bca6-3992-4a06-874d-143395a8b4df", - "techRecord_lastUpdatedByName": "Emyr Waters", - "techRecord_loadSensingValve": false, - "techRecord_make": "Isuzu", - "techRecord_manufactureYear": 2018, - "techRecord_maxLoadOnCoupling": 7000, - "techRecord_noOfAxles": 2, - "techRecord_notes": "some note", - "techRecord_ntaNumber": "123456", - "techRecord_numberOfWheelsDriven": null, - "techRecord_rearAxleToRearTrl": 400, - "techRecord_reasonForCreation": "Update to EU Vehicle Category", - "techRecord_recordCompleteness": "complete", - "techRecord_regnDate": "2019-06-24", - "techRecord_roadFriendly": true, - "techRecord_statusCode": "archived", - "techRecord_suspensionType": "Y", - "techRecord_tyreUseCode": "2B", - "techRecord_updateType": "techRecordUpdate", - "techRecord_vehicleClass_code": "t", - "techRecord_vehicleClass_description": "trailer", - "techRecord_vehicleConfiguration": "centre axle drawbar", - "techRecord_vehicleType": "trl", - "trailerId": "C000001", - "vin": "BPV000090" - }, - { - "systemNumber": "BPS000091", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000091", - "primaryVrm": "000091Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000091", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000092", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000092", - "primaryVrm": "000092Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000092", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000093", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000093", - "primaryVrm": "000093Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000093", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000094", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000094", - "primaryVrm": "000094Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000094", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000095", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000095", - "primaryVrm": "000095Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000095", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000096", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000096", - "primaryVrm": "000096Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000096", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000097", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000097", - "primaryVrm": "000097Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000097", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000098", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000098", - "primaryVrm": "000098Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000098", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000099", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000099", - "primaryVrm": "000099Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000099", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000100", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000100", - "primaryVrm": "000100Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000100", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000010", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000010", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000010" - }, - { - "systemNumber": "BPS000011", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000011", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000011" - }, - { - "systemNumber": "BPS000012", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000012", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000012" - }, - { - "systemNumber": "BPS000013", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000013", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000013" - }, - { - "systemNumber": "BPS000014", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000014", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000014" - }, - { - "systemNumber": "BPS000015", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000015", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000015" - }, - { - "systemNumber": "BPS000016", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000016", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000016" - }, - { - "systemNumber": "BPS000017", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000017", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000017" - }, - { - "systemNumber": "BPS000018", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000018", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000018" - }, - { - "systemNumber": "BPS000019", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000019", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000019" - }, - { - "systemNumber": "BPS000020", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000020", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000020" - }, - { - "systemNumber": "BPS000021", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000021", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000021" - }, - { - "systemNumber": "BPS000022", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000022", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000022" - }, - { - "systemNumber": "BPS000023", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000023", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000023" - }, - { - "systemNumber": "BPS000024", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000024", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000024" - }, - { - "systemNumber": "BPS000025", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000025", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000025" - }, - { - "systemNumber": "BPS000026", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000026", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000026" - }, - { - "systemNumber": "BPS000027", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000027", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000027" - }, - { - "systemNumber": "BPS000028", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000028", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000028" - }, - { - "systemNumber": "BPS000029", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000029", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000029" - }, - { - "systemNumber": "BPS000030", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000030", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000030" - }, - { - "systemNumber": "BPS000031", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000031", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000031" - }, - { - "systemNumber": "BPS000032", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000032", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000032" - }, - { - "systemNumber": "BPS000033", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000033", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000033" - }, - { - "systemNumber": "BPS000034", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000034", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000034" - }, - { - "systemNumber": "BPS000035", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000035", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000035" - }, - { - "systemNumber": "BPS000036", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000036", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000036" - }, - { - "systemNumber": "BPS000037", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000037", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000037" - }, - { - "systemNumber": "BPS000038", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000038", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000038" - }, - { - "systemNumber": "BPS000039", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000039", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000039" - }, - { - "systemNumber": "BPS000040", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000040", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000040" - }, - { - "systemNumber": "BPS000041", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000041", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000041" - }, - { - "systemNumber": "BPS000042", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000042", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000042" - }, - { - "systemNumber": "BPS000043", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000043", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000043" - }, - { - "systemNumber": "BPS000044", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000044", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000044" - }, - { - "systemNumber": "BPS000045", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000045", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000045" - }, - { - "systemNumber": "BPS000046", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000046", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000046" - }, - { - "systemNumber": "BPS000047", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000047", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000047" - }, - { - "systemNumber": "BPS000048", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000048", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000048" - }, - { - "systemNumber": "BPS000049", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000049", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000049" - }, - { - "systemNumber": "BPS000050", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000050", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000050" - }, - { - "systemNumber": "BPS000051", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000051", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000051" - }, - { - "systemNumber": "BPS000052", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000052", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000052" - }, - { - "systemNumber": "BPS000053", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000053", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000053" - }, - { - "systemNumber": "BPS000054", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000054", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000054" - }, - { - "systemNumber": "BPS000055", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000055", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000055" - }, - { - "systemNumber": "BPS000056", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000056", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000056" - }, - { - "systemNumber": "BPS000057", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000057", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000057" - }, - { - "systemNumber": "BPS000058", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000058", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000058" - }, - { - "systemNumber": "BPS000059", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000059", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000059" - }, - { - "systemNumber": "BPS000060", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000060", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000060" - }, - { - "systemNumber": "BPS000061", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000061", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000061" - }, - { - "systemNumber": "BPS000062", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000062", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000062" - }, - { - "systemNumber": "BPS000063", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000063", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000063" - }, - { - "systemNumber": "BPS000064", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000064", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000064" - }, - { - "systemNumber": "BPS000065", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000065", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000065" - }, - { - "systemNumber": "BPS000066", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000066", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000066" - }, - { - "systemNumber": "BPS000067", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000067", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000067" - }, - { - "systemNumber": "BPS000068", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000068", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000068" - }, - { - "systemNumber": "BPS000069", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000069", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000069" - }, - { - "systemNumber": "BPS000070", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000070", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000070" - }, - { - "systemNumber": "BPS000071", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000071", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000071" - }, - { - "systemNumber": "BPS000072", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000072", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000072" - }, - { - "systemNumber": "BPS000073", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000073", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000073" - }, - { - "systemNumber": "BPS000074", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000074", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000074" - }, - { - "systemNumber": "BPS000075", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000075", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000075" - }, - { - "systemNumber": "BPS000076", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000076", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000076" - }, - { - "systemNumber": "BPS000077", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000077", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000077" - }, - { - "systemNumber": "BPS000078", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000078", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000078" - }, - { - "systemNumber": "BPS000079", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000079", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000079" - }, - { - "systemNumber": "BPS000080", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000080", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000080" - }, - { - "systemNumber": "BPS000081", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000081", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000081" - }, - { - "systemNumber": "BPS000082", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000082", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000082" - }, - { - "systemNumber": "BPS000083", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000083", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000083" - }, - { - "systemNumber": "BPS000084", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000084", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000084" - }, - { - "systemNumber": "BPS000085", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000085", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000085" - }, - { - "systemNumber": "BPS000086", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000086", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000086" - }, - { - "systemNumber": "BPS000087", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000087", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000087" - }, - { - "systemNumber": "BPS000088", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000088", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000088" - }, - { - "systemNumber": "BPS000089", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000089", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000089" - }, - { - "systemNumber": "BPS000090", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000090", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000090" - }, - { - "systemNumber": "BPS000091", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000091", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000091" - }, - { - "systemNumber": "BPS000092", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000092", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000092" - }, - { - "systemNumber": "BPS000093", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000093", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000093" - }, - { - "systemNumber": "BPS000094", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000094", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000094" - }, - { - "systemNumber": "BPS000095", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000095", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000095" - }, - { - "systemNumber": "BPS000096", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000096", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000096" - }, - { - "systemNumber": "BPS000097", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000097", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000097" - }, - { - "systemNumber": "BPS000098", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000098", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000098" - }, - { - "systemNumber": "BPS000099", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000099", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000099" - }, - { - "systemNumber": "BPS000100", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000100", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000100" - }, - { - "systemNumber": "BPS000101", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000101", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000101" - }, - { - "systemNumber": "BPS000102", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000102", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000102" - }, - { - "systemNumber": "BPS000103", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000103", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000103" - }, - { - "systemNumber": "BPS000104", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000104", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000104" - }, - { - "systemNumber": "BPS000105", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000105", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000105" - }, - { - "systemNumber": "BPS000106", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000106", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000106" - }, - { - "systemNumber": "BPS000107", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000107", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000107" - }, - { - "systemNumber": "BPS000108", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000108", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000108" - }, - { - "systemNumber": "BPS000109", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000109", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000109" - }, - { - "systemNumber": "BPS000110", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000110", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000110" - }, - { - "systemNumber": "BPS000111", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000111", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000111" - }, - { - "systemNumber": "BPS000112", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000112", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000112" - }, - { - "systemNumber": "BPS000113", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000113", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000113" - }, - { - "systemNumber": "BPS000114", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000114", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000114" - }, - { - "systemNumber": "BPS000115", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000115", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000115" - }, - { - "systemNumber": "BPS000116", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000116", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000116" - }, - { - "systemNumber": "BPS000117", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000117", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000117" - }, - { - "systemNumber": "BPS000118", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000118", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000118" - }, - { - "systemNumber": "BPS000119", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000119", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000119" - }, - { - "systemNumber": "BPS000120", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000120", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000120" - }, - { - "systemNumber": "BPS000121", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000121", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000121" - }, - { - "systemNumber": "BPS000122", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000122", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000122" - }, - { - "systemNumber": "BPS000123", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000123", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000123" - }, - { - "systemNumber": "BPS000124", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000124", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000124" - }, - { - "systemNumber": "BPS000125", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000125", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000125" - }, - { - "systemNumber": "BPS000126", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000126", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000126" - }, - { - "systemNumber": "BPS000127", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000127", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000127" - }, - { - "systemNumber": "BPS000128", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000128", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000128" - }, - { - "systemNumber": "BPS000129", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000129", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000129" - }, - { - "systemNumber": "BPS000130", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000130", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000130" - }, - { - "systemNumber": "BPS000131", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000131", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000131" - }, - { - "systemNumber": "BPS000132", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000132", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000132" - }, - { - "systemNumber": "BPS000133", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000133", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000133" - }, - { - "systemNumber": "BPS000134", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000134", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000134" - }, - { - "systemNumber": "BPS000135", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000135", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000135" - }, - { - "systemNumber": "BPS000136", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000136", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000136" - }, - { - "systemNumber": "BPS000137", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000137", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000137" - }, - { - "systemNumber": "BPS000138", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000138", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000138" - }, - { - "systemNumber": "BPS000139", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000139", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000139" - }, - { - "systemNumber": "BPS000140", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000140", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000140" - }, - { - "systemNumber": "BPS000141", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000141", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000141" - }, - { - "systemNumber": "BPS000142", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000142", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000142" - }, - { - "systemNumber": "BPS000143", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000143", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000143" - }, - { - "systemNumber": "BPS000144", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000144", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000144" - }, - { - "systemNumber": "BPS000145", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000145", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000145" - }, - { - "systemNumber": "BPS000146", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000146", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000146" - }, - { - "systemNumber": "BPS000147", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000147", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000147" - }, - { - "systemNumber": "BPS000148", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000148", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000148" - }, - { - "systemNumber": "BPS000149", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000149", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000149" - }, - { - "systemNumber": "BPS000150", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000150", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000150" - }, - { - "systemNumber": "BPS000151", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000151", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000151" - }, - { - "systemNumber": "BPS000152", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000152", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000152" - }, - { - "systemNumber": "BPS000153", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000153", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000153" - }, - { - "systemNumber": "BPS000154", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000154", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000154" - }, - { - "systemNumber": "BPS000155", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000155", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000155" - }, - { - "systemNumber": "BPS000156", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000156", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000156" - }, - { - "systemNumber": "BPS000157", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000157", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000157" - }, - { - "systemNumber": "BPS000158", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000158", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000158" - }, - { - "systemNumber": "BPS000159", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000159", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000159" - }, - { - "systemNumber": "BPS000160", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000160", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000160" - }, - { - "systemNumber": "BPS000161", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000161", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000161" - }, - { - "systemNumber": "BPS000162", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000162", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000162" - }, - { - "systemNumber": "BPS000163", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000163", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000163" - }, - { - "systemNumber": "BPS000164", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000164", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000164" - }, - { - "systemNumber": "BPS000165", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000165", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000165" - }, - { - "systemNumber": "BPS000166", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000166", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000166" - }, - { - "systemNumber": "BPS000167", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000167", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000167" - }, - { - "systemNumber": "BPS000168", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000168", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000168" - }, - { - "systemNumber": "BPS000169", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000169", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000169" - }, - { - "systemNumber": "BPS000170", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000170", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000170" - }, - { - "systemNumber": "BPS000171", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000171", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000171" - }, - { - "systemNumber": "BPS000172", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000172", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000172" - }, - { - "systemNumber": "BPS000173", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000173", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000173" - }, - { - "systemNumber": "BPS000174", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000174", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000174" - }, - { - "systemNumber": "BPS000175", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000175", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000175" - }, - { - "systemNumber": "BPS000176", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000176", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000176" - }, - { - "systemNumber": "BPS000177", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000177", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000177" - }, - { - "systemNumber": "BPS000178", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000178", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000178" - }, - { - "systemNumber": "BPS000179", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000179", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000179" - }, - { - "systemNumber": "BPS000180", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000180", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000180" - }, - { - "systemNumber": "BPS000181", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000181", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000181" - }, - { - "systemNumber": "BPS000182", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000182", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000182" - }, - { - "systemNumber": "BPS000183", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000183", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000183" - }, - { - "systemNumber": "BPS000184", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000184", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000184" - }, - { - "systemNumber": "BPS000185", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000185", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000185" - }, - { - "systemNumber": "BPS000186", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000186", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000186" - }, - { - "systemNumber": "BPS000187", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000187", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000187" - }, - { - "systemNumber": "BPS000188", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000188", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000188" - }, - { - "systemNumber": "BPS000189", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000189", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000189" - }, - { - "systemNumber": "BPS000190", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000190", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000190" - }, - { - "systemNumber": "BPS000191", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000191", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000191" - }, - { - "systemNumber": "BPS000192", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000192", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000192" - }, - { - "systemNumber": "BPS000193", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000193", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000193" - }, - { - "systemNumber": "BPS000194", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000194", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000194" - }, - { - "systemNumber": "BPS000195", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000195", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000195" - }, - { - "systemNumber": "BPS000196", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000196", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000196" - }, - { - "systemNumber": "BPS000197", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000197", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000197" - }, - { - "systemNumber": "BPS000198", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000198", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000198" - }, - { - "systemNumber": "BPS000199", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000199", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000199" - }, - { - "systemNumber": "BPS000200", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000200", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000200" - }, - { - "systemNumber": "BPS000201", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000201", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000201" - }, - { - "systemNumber": "BPS000202", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000202", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000202" - }, - { - "systemNumber": "BPS000203", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000203", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000203" - }, - { - "systemNumber": "BPS000204", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000204", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000204" - }, - { - "systemNumber": "BPS000205", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000205", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000205" - }, - { - "systemNumber": "BPS000206", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000206", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000206" - }, - { - "systemNumber": "BPS000207", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000207", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000207" - }, - { - "systemNumber": "BPS000208", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000208", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000208" - }, - { - "systemNumber": "BPS000209", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000209", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000209" - }, - { - "systemNumber": "BPS000210", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000210", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000210" - }, - { - "systemNumber": "BPS000211", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000211", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000211" - }, - { - "systemNumber": "BPS000212", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000212", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000212" - }, - { - "systemNumber": "BPS000213", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000213", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000213" - }, - { - "systemNumber": "BPS000214", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000214", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000214" - }, - { - "systemNumber": "BPS000215", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000215", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000215" - }, - { - "systemNumber": "BPS000216", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000216", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000216" - }, - { - "systemNumber": "BPS000217", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000217", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000217" - }, - { - "systemNumber": "BPS000218", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000218", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000218" - }, - { - "systemNumber": "BPS000219", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000219", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000219" - }, - { - "systemNumber": "BPS000220", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000220", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000220" - }, - { - "systemNumber": "BPS000221", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000221", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000221" - }, - { - "systemNumber": "BPS000222", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000222", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000222" - }, - { - "systemNumber": "BPS000223", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000223", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000223" - }, - { - "systemNumber": "BPS000224", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000224", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000224" - }, - { - "systemNumber": "BPS000225", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000225", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000225" - }, - { - "systemNumber": "BPS000226", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000226", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000226" - }, - { - "systemNumber": "BPS000227", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000227", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000227" - }, - { - "systemNumber": "BPS000228", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000228", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000228" - }, - { - "systemNumber": "BPS000229", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000229", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000229" - }, - { - "systemNumber": "BPS000230", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000230", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000230" - }, - { - "systemNumber": "BPS000231", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000231", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000231" - }, - { - "systemNumber": "BPS000232", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000232", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000232" - }, - { - "systemNumber": "BPS000233", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000233", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000233" - }, - { - "systemNumber": "BPS000234", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000234", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000234" - }, - { - "systemNumber": "BPS000235", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000235", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000235" - }, - { - "systemNumber": "BPS000236", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000236", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000236" - }, - { - "systemNumber": "BPS000237", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000237", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000237" - }, - { - "systemNumber": "BPS000238", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000238", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000238" - }, - { - "systemNumber": "BPS000239", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000239", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000239" - }, - { - "systemNumber": "BPS000240", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000240", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000240" - }, - { - "systemNumber": "BPS000241", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000241", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000241" - }, - { - "systemNumber": "BPS000242", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000242", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000242" - }, - { - "systemNumber": "BPS000243", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000243", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000243" - }, - { - "systemNumber": "BPS000244", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000244", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000244" - }, - { - "systemNumber": "BPS000245", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000245", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000245" - }, - { - "systemNumber": "BPS000246", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000246", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000246" - }, - { - "systemNumber": "BPS000247", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000247", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000247" - }, - { - "systemNumber": "BPS000248", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000248", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000248" - }, - { - "systemNumber": "BPS000249", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000249", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000249" - }, - { - "systemNumber": "BPS000250", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000250", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000250" - }, - { - "systemNumber": "BPS000251", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000251", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000251" - }, - { - "systemNumber": "BPS000252", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000252", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000252" - }, - { - "systemNumber": "BPS000253", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000253", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000253" - }, - { - "systemNumber": "BPS000254", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000254", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000254" - }, - { - "systemNumber": "BPS000255", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000255", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000255" - }, - { - "systemNumber": "BPS000256", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000256", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000256" - }, - { - "systemNumber": "BPS000257", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000257", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000257" - }, - { - "systemNumber": "BPS000258", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000258", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000258" - }, - { - "systemNumber": "BPS000259", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000259", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000259" - }, - { - "systemNumber": "BPS000260", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000260", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000260" - }, - { - "systemNumber": "BPS000261", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000261", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000261" - }, - { - "systemNumber": "BPS000262", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000262", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000262" - }, - { - "systemNumber": "BPS000263", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000263", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000263" - }, - { - "systemNumber": "BPS000264", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000264", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000264" - }, - { - "systemNumber": "BPS000265", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000265", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000265" - }, - { - "systemNumber": "BPS000266", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000266", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000266" - }, - { - "systemNumber": "BPS000267", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000267", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000267" - }, - { - "systemNumber": "BPS000268", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000268", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000268" - }, - { - "systemNumber": "BPS000269", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000269", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000269" - }, - { - "systemNumber": "BPS000270", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000270", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000270" - }, - { - "systemNumber": "BPS000271", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000271", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000271" - }, - { - "systemNumber": "BPS000272", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000272", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000272" - }, - { - "systemNumber": "BPS000273", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000273", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000273" - }, - { - "systemNumber": "BPS000274", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000274", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000274" - }, - { - "systemNumber": "BPS000275", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000275", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000275" - }, - { - "systemNumber": "BPS000276", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000276", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000276" - }, - { - "systemNumber": "BPS000277", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000277", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000277" - }, - { - "systemNumber": "BPS000278", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000278", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000278" - }, - { - "systemNumber": "BPS000279", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000279", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000279" - }, - { - "systemNumber": "BPS000280", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000280", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000280" - }, - { - "systemNumber": "BPS000281", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000281", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000281" - }, - { - "systemNumber": "BPS000282", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000282", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000282" - }, - { - "systemNumber": "BPS000283", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000283", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000283" - }, - { - "systemNumber": "BPS000284", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000284", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000284" - }, - { - "systemNumber": "BPS000285", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000285", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000285" - }, - { - "systemNumber": "BPS000286", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000286", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000286" - }, - { - "systemNumber": "BPS000287", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000287", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000287" - }, - { - "systemNumber": "BPS000288", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000288", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000288" - }, - { - "systemNumber": "BPS000289", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000289", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000289" - }, - { - "systemNumber": "BPS000290", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000290", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000290" - }, - { - "systemNumber": "BPS000291", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000291", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000291" - }, - { - "systemNumber": "BPS000292", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000292", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000292" - }, - { - "systemNumber": "BPS000293", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000293", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000293" - }, - { - "systemNumber": "BPS000294", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000294", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000294" - }, - { - "systemNumber": "BPS000295", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000295", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000295" - }, - { - "systemNumber": "BPS000296", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000296", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000296" - }, - { - "systemNumber": "BPS000297", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000297", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000297" - }, - { - "systemNumber": "BPS000298", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000298", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000298" - }, - { - "systemNumber": "BPS000299", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000299", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000299" - }, - { - "systemNumber": "BPS000300", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000300", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000300" - }, - { - "systemNumber": "BPS000301", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000301", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000301" - }, - { - "systemNumber": "BPS000302", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000302", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000302" - }, - { - "systemNumber": "BPS000303", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000303", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000303" - }, - { - "systemNumber": "BPS000304", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000304", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000304" - }, - { - "systemNumber": "BPS000305", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000305", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000305" - }, - { - "systemNumber": "BPS000306", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000306", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000306" - }, - { - "systemNumber": "BPS000307", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000307", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000307" - }, - { - "systemNumber": "BPS000308", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000308", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000308" - }, - { - "systemNumber": "BPS000309", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000309", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000309" - }, - { - "systemNumber": "BPS000310", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000310", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000310" - }, - { - "systemNumber": "BPS000311", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000311", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000311" - }, - { - "systemNumber": "BPS000312", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000312", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000312" - }, - { - "systemNumber": "BPS000313", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000313", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000313" - }, - { - "systemNumber": "BPS000314", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000314", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000314" - }, - { - "systemNumber": "BPS000315", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000315", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000315" - }, - { - "systemNumber": "BPS000316", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000316", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000316" - }, - { - "systemNumber": "BPS000317", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000317", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000317" - }, - { - "systemNumber": "BPS000318", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000318", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000318" - }, - { - "systemNumber": "BPS000319", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000319", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000319" - }, - { - "systemNumber": "BPS000320", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000320", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000320" - }, - { - "systemNumber": "BPS000321", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000321", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000321" - }, - { - "systemNumber": "BPS000322", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000322", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000322" - }, - { - "systemNumber": "BPS000323", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000323", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000323" - }, - { - "systemNumber": "BPS000324", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000324", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000324" - }, - { - "systemNumber": "BPS000325", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000325", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000325" - }, - { - "systemNumber": "BPS000326", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000326", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000326" - }, - { - "systemNumber": "BPS000327", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000327", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000327" - }, - { - "systemNumber": "BPS000328", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000328", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000328" - }, - { - "systemNumber": "BPS000329", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000329", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000329" - }, - { - "systemNumber": "BPS000330", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000330", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000330" - }, - { - "systemNumber": "BPS000331", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000331", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000331" - }, - { - "systemNumber": "BPS000332", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000332", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000332" - }, - { - "systemNumber": "BPS000333", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000333", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000333" - }, - { - "systemNumber": "BPS000334", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000334", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000334" - }, - { - "systemNumber": "BPS000335", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000335", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000335" - }, - { - "systemNumber": "BPS000336", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000336", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000336" - }, - { - "systemNumber": "BPS000337", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000337", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000337" - }, - { - "systemNumber": "BPS000338", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000338", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000338" - }, - { - "systemNumber": "BPS000339", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000339", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000339" - }, - { - "systemNumber": "BPS000340", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000340", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000340" - }, - { - "systemNumber": "BPS000341", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000341", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000341" - }, - { - "systemNumber": "BPS000342", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000342", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000342" - }, - { - "systemNumber": "BPS000343", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000343", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000343" - }, - { - "systemNumber": "BPS000344", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000344", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000344" - }, - { - "systemNumber": "BPS000345", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000345", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000345" - }, - { - "systemNumber": "BPS000346", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000346", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000346" - }, - { - "systemNumber": "BPS000347", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000347", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000347" - }, - { - "systemNumber": "BPS000348", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000348", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000348" - }, - { - "systemNumber": "BPS000349", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000349", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000349" - }, - { - "systemNumber": "BPS000350", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000350", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000350" - }, - { - "systemNumber": "BPS000351", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000351", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000351" - }, - { - "systemNumber": "BPS000352", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000352", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000352" - }, - { - "systemNumber": "BPS000353", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000353", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000353" - }, - { - "systemNumber": "BPS000354", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000354", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000354" - }, - { - "systemNumber": "BPS000355", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000355", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000355" - }, - { - "systemNumber": "BPS000356", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000356", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000356" - }, - { - "systemNumber": "BPS000357", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000357", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000357" - }, - { - "systemNumber": "BPS000358", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000358", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000358" - }, - { - "systemNumber": "BPS000359", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000359", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000359" - }, - { - "systemNumber": "BPS000360", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000360", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000360" - }, - { - "systemNumber": "BPS000361", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000361", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000361" - }, - { - "systemNumber": "BPS000362", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000362", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000362" - }, - { - "systemNumber": "BPS000363", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000363", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000363" - }, - { - "systemNumber": "BPS000364", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000364", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000364" - }, - { - "systemNumber": "BPS000365", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000365", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000365" - }, - { - "systemNumber": "BPS000366", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000366", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000366" - }, - { - "systemNumber": "BPS000367", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000367", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000367" - }, - { - "systemNumber": "BPS000368", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000368", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000368" - }, - { - "systemNumber": "BPS000369", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000369", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000369" - }, - { - "systemNumber": "BPS000370", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000370", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000370" - }, - { - "systemNumber": "BPS000371", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000371", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000371" - }, - { - "systemNumber": "BPS000372", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000372", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000372" - }, - { - "systemNumber": "BPS000373", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000373", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000373" - }, - { - "systemNumber": "BPS000374", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000374", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000374" - }, - { - "systemNumber": "BPS000375", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000375", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000375" - }, - { - "systemNumber": "BPS000376", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000376", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000376" - }, - { - "systemNumber": "BPS000377", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000377", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000377" - }, - { - "systemNumber": "BPS000378", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000378", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000378" - }, - { - "systemNumber": "BPS000379", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000379", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000379" - }, - { - "systemNumber": "BPS000380", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000380", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000380" - }, - { - "systemNumber": "BPS000381", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000381", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000381" - }, - { - "systemNumber": "BPS000382", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000382", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000382" - }, - { - "systemNumber": "BPS000383", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000383", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000383" - }, - { - "systemNumber": "BPS000384", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000384", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000384" - }, - { - "systemNumber": "BPS000385", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000385", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000385" - }, - { - "systemNumber": "BPS000386", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000386", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000386" - }, - { - "systemNumber": "BPS000387", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000387", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000387" - }, - { - "systemNumber": "BPS000388", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000388", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000388" - }, - { - "systemNumber": "BPS000389", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000389", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000389" - }, - { - "systemNumber": "BPS000390", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000390", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000390" - }, - { - "systemNumber": "BPS000391", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000391", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000391" - }, - { - "systemNumber": "BPS000392", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000392", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000392" - }, - { - "systemNumber": "BPS000393", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000393", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000393" - }, - { - "systemNumber": "BPS000394", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000394", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000394" - }, - { - "systemNumber": "BPS000395", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000395", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000395" - }, - { - "systemNumber": "BPS000396", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000396", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000396" - }, - { - "systemNumber": "BPS000397", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000397", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000397" - }, - { - "systemNumber": "BPS000398", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000398", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000398" - }, - { - "systemNumber": "BPS000399", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000399", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000399" - }, - { - "systemNumber": "BPS000400", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000400", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000400" - }, - { - "systemNumber": "BPS000401", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000401", - "primaryVrm": "000401Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000401", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000402", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000402", - "primaryVrm": "000402Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000402", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000403", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000403", - "primaryVrm": "000403Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000403", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000404", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000404", - "primaryVrm": "000404Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000404", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000405", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000405", - "primaryVrm": "000405Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000405", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000406", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000406", - "primaryVrm": "000406Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000406", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000407", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000407", - "primaryVrm": "000407Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000407", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000408", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000408", - "primaryVrm": "000408Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000408", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000409", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000409", - "primaryVrm": "000409Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000409", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000410", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000410", - "primaryVrm": "000410Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000410", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000411", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000411", - "primaryVrm": "000411Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000411", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000412", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000412", - "primaryVrm": "000412Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000412", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000413", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000413", - "primaryVrm": "000413Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000413", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000414", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000414", - "primaryVrm": "000414Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000414", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000415", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000415", - "primaryVrm": "000415Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000415", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000416", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000416", - "primaryVrm": "000416Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000416", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000417", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000417", - "primaryVrm": "000417Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000417", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000418", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000418", - "primaryVrm": "000418Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000418", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000419", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000419", - "primaryVrm": "000419Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000419", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000420", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000420", - "primaryVrm": "000420Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000420", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000421", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000421", - "primaryVrm": "000421Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000421", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000422", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000422", - "primaryVrm": "000422Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000422", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000423", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000423", - "primaryVrm": "000423Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000423", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000424", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000424", - "primaryVrm": "000424Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000424", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000425", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000425", - "primaryVrm": "000425Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000425", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000426", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000426", - "primaryVrm": "000426Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000426", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000427", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000427", - "primaryVrm": "000427Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000427", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000428", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000428", - "primaryVrm": "000428Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000428", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000429", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000429", - "primaryVrm": "000429Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000429", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000430", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000430", - "primaryVrm": "000430Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000430", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000431", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000431", - "primaryVrm": "000431Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000431", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000432", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000432", - "primaryVrm": "000432Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000432", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000433", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000433", - "primaryVrm": "000433Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000433", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000434", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000434", - "primaryVrm": "000434Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000434", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000435", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000435", - "primaryVrm": "000435Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000435", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000436", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000436", - "primaryVrm": "000436Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000436", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000437", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000437", - "primaryVrm": "000437Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000437", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000438", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000438", - "primaryVrm": "000438Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000438", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000439", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000439", - "primaryVrm": "000439Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000439", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000440", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000440", - "primaryVrm": "000440Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000440", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000441", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000441", - "primaryVrm": "000441Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000441", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000442", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000442", - "primaryVrm": "000442Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000442", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000443", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000443", - "primaryVrm": "000443Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000443", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000444", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000444", - "primaryVrm": "000444Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000444", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000445", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000445", - "primaryVrm": "000445Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000445", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000446", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000446", - "primaryVrm": "000446Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000446", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000447", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000447", - "primaryVrm": "000447Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000447", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000448", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000448", - "primaryVrm": "000448Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000448", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000449", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000449", - "primaryVrm": "000449Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000449", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000450", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000450", - "primaryVrm": "000450Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000450", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000451", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000451", - "primaryVrm": "000451Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000451", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000452", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000452", - "primaryVrm": "000452Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000452", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000453", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000453", - "primaryVrm": "000453Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000453", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000454", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000454", - "primaryVrm": "000454Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000454", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000455", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000455", - "primaryVrm": "000455Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000455", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000456", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000456", - "primaryVrm": "000456Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000456", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000457", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000457", - "primaryVrm": "000457Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000457", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000458", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000458", - "primaryVrm": "000458Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000458", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000459", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000459", - "primaryVrm": "000459Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000459", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000460", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000460", - "primaryVrm": "000460Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000460", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000461", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000461", - "primaryVrm": "000461Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000461", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000462", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000462", - "primaryVrm": "000462Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000462", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000463", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000463", - "primaryVrm": "000463Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000463", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000464", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000464", - "primaryVrm": "000464Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000464", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000465", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000465", - "primaryVrm": "000465Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000465", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000466", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000466", - "primaryVrm": "000466Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000466", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000467", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000467", - "primaryVrm": "000467Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000467", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000468", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000468", - "primaryVrm": "000468Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000468", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000469", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000469", - "primaryVrm": "000469Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000469", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000470", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000470", - "primaryVrm": "000470Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000470", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000471", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000471", - "primaryVrm": "000471Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000471", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000472", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000472", - "primaryVrm": "000472Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000472", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000473", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000473", - "primaryVrm": "000473Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000473", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000474", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000474", - "primaryVrm": "000474Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000474", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000475", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000475", - "primaryVrm": "000475Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000475", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000476", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000476", - "primaryVrm": "000476Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000476", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000477", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000477", - "primaryVrm": "000477Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000477", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000478", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000478", - "primaryVrm": "000478Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000478", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000479", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000479", - "primaryVrm": "000479Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000479", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000480", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000480", - "primaryVrm": "000480Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000480", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000481", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000481", - "primaryVrm": "000481Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000481", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000482", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000482", - "primaryVrm": "000482Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000482", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000483", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000483", - "primaryVrm": "000483Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000483", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000484", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000484", - "primaryVrm": "000484Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000484", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000485", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000485", - "primaryVrm": "000485Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000485", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000486", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000486", - "primaryVrm": "000486Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000486", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000487", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000487", - "primaryVrm": "000487Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000487", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000488", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000488", - "primaryVrm": "000488Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000488", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000489", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000489", - "primaryVrm": "000489Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000489", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000490", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000490", - "primaryVrm": "000490Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000490", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000491", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000491", - "primaryVrm": "000491Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000491", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000492", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000492", - "primaryVrm": "000492Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000492", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000493", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000493", - "primaryVrm": "000493Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000493", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000494", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000494", - "primaryVrm": "000494Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000494", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000495", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000495", - "primaryVrm": "000495Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000495", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000496", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000496", - "primaryVrm": "000496Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000496", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000497", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000497", - "primaryVrm": "000497Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000497", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000498", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000498", - "primaryVrm": "000498Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000498", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000499", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000499", - "primaryVrm": "000499Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000499", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000500", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000500", - "primaryVrm": "000500Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000500", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000501", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000501", - "primaryVrm": "000501Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000501", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000502", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000502", - "primaryVrm": "000502Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000502", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000503", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000503", - "primaryVrm": "000503Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000503", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000504", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000504", - "primaryVrm": "000504Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000504", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000505", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000505", - "primaryVrm": "000505Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000505", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000506", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000506", - "primaryVrm": "000506Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000506", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000507", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000507", - "primaryVrm": "000507Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000507", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000508", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000508", - "primaryVrm": "000508Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000508", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000509", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000509", - "primaryVrm": "000509Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000509", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000510", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000510", - "primaryVrm": "000510Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000510", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000511", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000511", - "primaryVrm": "000511Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000511", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000512", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000512", - "primaryVrm": "000512Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000512", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000513", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000513", - "primaryVrm": "000513Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000513", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000514", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000514", - "primaryVrm": "000514Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000514", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000515", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000515", - "primaryVrm": "000515Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000515", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000516", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000516", - "primaryVrm": "000516Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000516", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000517", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000517", - "primaryVrm": "000517Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000517", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000518", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000518", - "primaryVrm": "000518Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000518", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000519", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000519", - "primaryVrm": "000519Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000519", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000520", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000520", - "primaryVrm": "000520Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000520", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000521", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000521", - "primaryVrm": "000521Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000521", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000522", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000522", - "primaryVrm": "000522Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000522", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000523", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000523", - "primaryVrm": "000523Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000523", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000524", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000524", - "primaryVrm": "000524Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000524", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000525", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000525", - "primaryVrm": "000525Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000525", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000526", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000526", - "primaryVrm": "000526Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000526", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000527", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000527", - "primaryVrm": "000527Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000527", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000528", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000528", - "primaryVrm": "000528Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000528", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000529", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000529", - "primaryVrm": "000529Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000529", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000530", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000530", - "primaryVrm": "000530Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000530", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000531", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000531", - "primaryVrm": "000531Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000531", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000532", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000532", - "primaryVrm": "000532Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000532", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000533", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000533", - "primaryVrm": "000533Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000533", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000534", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000534", - "primaryVrm": "000534Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000534", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000535", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000535", - "primaryVrm": "000535Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000535", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000536", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000536", - "primaryVrm": "000536Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000536", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000537", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000537", - "primaryVrm": "000537Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000537", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000538", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000538", - "primaryVrm": "000538Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000538", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000539", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000539", - "primaryVrm": "000539Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000539", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000540", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000540", - "primaryVrm": "000540Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000540", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000541", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000541", - "primaryVrm": "000541Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000541", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000542", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000542", - "primaryVrm": "000542Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000542", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000543", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000543", - "primaryVrm": "000543Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000543", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000544", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000544", - "primaryVrm": "000544Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000544", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000545", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000545", - "primaryVrm": "000545Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000545", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000546", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000546", - "primaryVrm": "000546Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000546", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000547", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000547", - "primaryVrm": "000547Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000547", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000548", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000548", - "primaryVrm": "000548Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000548", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000549", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000549", - "primaryVrm": "000549Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000549", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000550", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000550", - "primaryVrm": "000550Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000550", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000551", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000551", - "primaryVrm": "000551Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000551", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000552", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000552", - "primaryVrm": "000552Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000552", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000553", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000553", - "primaryVrm": "000553Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000553", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000554", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000554", - "primaryVrm": "000554Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000554", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000555", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000555", - "primaryVrm": "000555Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000555", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000556", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000556", - "primaryVrm": "000556Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000556", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000557", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000557", - "primaryVrm": "000557Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000557", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000558", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000558", - "primaryVrm": "000558Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000558", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000559", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000559", - "primaryVrm": "000559Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000559", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000560", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000560", - "primaryVrm": "000560Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000560", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000561", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000561", - "primaryVrm": "000561Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000561", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000562", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000562", - "primaryVrm": "000562Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000562", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000563", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000563", - "primaryVrm": "000563Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000563", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000564", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000564", - "primaryVrm": "000564Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000564", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000565", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000565", - "primaryVrm": "000565Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000565", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000566", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000566", - "primaryVrm": "000566Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000566", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000567", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000567", - "primaryVrm": "000567Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000567", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000568", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000568", - "primaryVrm": "000568Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000568", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000569", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000569", - "primaryVrm": "000569Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000569", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000570", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000570", - "primaryVrm": "000570Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000570", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000571", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000571", - "primaryVrm": "000571Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000571", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000572", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000572", - "primaryVrm": "000572Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000572", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000573", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000573", - "primaryVrm": "000573Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000573", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000574", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000574", - "primaryVrm": "000574Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000574", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000575", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000575", - "primaryVrm": "000575Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000575", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000576", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000576", - "primaryVrm": "000576Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000576", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000577", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000577", - "primaryVrm": "000577Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000577", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000578", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000578", - "primaryVrm": "000578Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000578", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000579", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000579", - "primaryVrm": "000579Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000579", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000580", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000580", - "primaryVrm": "000580Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000580", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000581", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000581", - "primaryVrm": "000581Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000581", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000582", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000582", - "primaryVrm": "000582Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000582", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000583", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000583", - "primaryVrm": "000583Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000583", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000584", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000584", - "primaryVrm": "000584Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000584", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000585", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000585", - "primaryVrm": "000585Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000585", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000586", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000586", - "primaryVrm": "000586Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000586", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000587", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000587", - "primaryVrm": "000587Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000587", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000588", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000588", - "primaryVrm": "000588Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000588", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000589", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000589", - "primaryVrm": "000589Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000589", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000590", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000590", - "primaryVrm": "000590Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000590", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000591", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000591", - "primaryVrm": "000591Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000591", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000592", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000592", - "primaryVrm": "000592Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000592", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000593", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000593", - "primaryVrm": "000593Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000593", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000594", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000594", - "primaryVrm": "000594Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000594", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000595", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000595", - "primaryVrm": "000595Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000595", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000596", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000596", - "primaryVrm": "000596Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000596", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000597", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000597", - "primaryVrm": "000597Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000597", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000598", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000598", - "primaryVrm": "000598Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000598", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000599", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000599", - "primaryVrm": "000599Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000599", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000600", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000600", - "primaryVrm": "000600Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000600", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000601", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000601", - "primaryVrm": "000601Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000601", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000602", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000602", - "primaryVrm": "000602Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000602", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000603", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000603", - "primaryVrm": "000603Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000603", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000604", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000604", - "primaryVrm": "000604Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000604", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000605", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000605", - "primaryVrm": "000605Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000605", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000606", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000606", - "primaryVrm": "000606Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000606", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000607", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000607", - "primaryVrm": "000607Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000607", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000608", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000608", - "primaryVrm": "000608Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000608", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000609", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000609", - "primaryVrm": "000609Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000609", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000610", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000610", - "primaryVrm": "000610Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000610", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000611", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000611", - "primaryVrm": "000611Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000611", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000612", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000612", - "primaryVrm": "000612Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000612", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000613", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000613", - "primaryVrm": "000613Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000613", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000614", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000614", - "primaryVrm": "000614Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000614", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000615", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000615", - "primaryVrm": "000615Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000615", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000616", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000616", - "primaryVrm": "000616Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000616", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000617", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000617", - "primaryVrm": "000617Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000617", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000618", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000618", - "primaryVrm": "000618Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000618", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000619", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000619", - "primaryVrm": "000619Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000619", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000620", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000620", - "primaryVrm": "000620Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000620", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000621", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000621", - "primaryVrm": "000621Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000621", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000622", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000622", - "primaryVrm": "000622Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000622", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000623", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000623", - "primaryVrm": "000623Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000623", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000624", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000624", - "primaryVrm": "000624Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000624", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000625", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000625", - "primaryVrm": "000625Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000625", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000626", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000626", - "primaryVrm": "000626Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000626", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000627", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000627", - "primaryVrm": "000627Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000627", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000628", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000628", - "primaryVrm": "000628Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000628", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000629", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000629", - "primaryVrm": "000629Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000629", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000630", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000630", - "primaryVrm": "000630Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000630", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000631", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000631", - "primaryVrm": "000631Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000631", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000632", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000632", - "primaryVrm": "000632Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000632", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000633", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000633", - "primaryVrm": "000633Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000633", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000634", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000634", - "primaryVrm": "000634Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000634", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000635", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000635", - "primaryVrm": "000635Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000635", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000636", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000636", - "primaryVrm": "000636Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000636", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000637", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000637", - "primaryVrm": "000637Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000637", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000638", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000638", - "primaryVrm": "000638Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000638", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000639", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000639", - "primaryVrm": "000639Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000639", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000640", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000640", - "primaryVrm": "000640Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000640", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000641", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000641", - "primaryVrm": "000641Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000641", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000642", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000642", - "primaryVrm": "000642Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000642", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000643", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000643", - "primaryVrm": "000643Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000643", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000644", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000644", - "primaryVrm": "000644Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000644", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000645", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000645", - "primaryVrm": "000645Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000645", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000646", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000646", - "primaryVrm": "000646Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000646", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000647", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000647", - "primaryVrm": "000647Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000647", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000648", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000648", - "primaryVrm": "000648Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000648", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000649", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000649", - "primaryVrm": "000649Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000649", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000650", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000650", - "primaryVrm": "000650Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000650", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000651", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000651", - "primaryVrm": "000651Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000651", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000652", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000652", - "primaryVrm": "000652Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000652", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000653", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000653", - "primaryVrm": "000653Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000653", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000654", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000654", - "primaryVrm": "000654Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000654", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000655", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000655", - "primaryVrm": "000655Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000655", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000656", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000656", - "primaryVrm": "000656Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000656", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000657", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000657", - "primaryVrm": "000657Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000657", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000658", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000658", - "primaryVrm": "000658Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000658", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000659", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000659", - "primaryVrm": "000659Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000659", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000660", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000660", - "primaryVrm": "000660Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000660", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000661", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000661", - "primaryVrm": "000661Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000661", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000662", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000662", - "primaryVrm": "000662Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000662", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000663", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000663", - "primaryVrm": "000663Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000663", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000664", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000664", - "primaryVrm": "000664Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000664", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000665", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000665", - "primaryVrm": "000665Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000665", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000666", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000666", - "primaryVrm": "000666Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000666", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000667", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000667", - "primaryVrm": "000667Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000667", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000668", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000668", - "primaryVrm": "000668Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000668", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000669", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000669", - "primaryVrm": "000669Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000669", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000670", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000670", - "primaryVrm": "000670Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000670", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000671", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000671", - "primaryVrm": "000671Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000671", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000672", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000672", - "primaryVrm": "000672Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000672", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000673", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000673", - "primaryVrm": "000673Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000673", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000674", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000674", - "primaryVrm": "000674Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000674", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000675", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000675", - "primaryVrm": "000675Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000675", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000676", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000676", - "primaryVrm": "000676Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000676", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000677", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000677", - "primaryVrm": "000677Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000677", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000678", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000678", - "primaryVrm": "000678Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000678", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000679", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000679", - "primaryVrm": "000679Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000679", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000680", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000680", - "primaryVrm": "000680Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000680", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000681", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000681", - "primaryVrm": "000681Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000681", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000682", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000682", - "primaryVrm": "000682Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000682", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000683", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000683", - "primaryVrm": "000683Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000683", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000684", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000684", - "primaryVrm": "000684Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000684", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000685", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000685", - "primaryVrm": "000685Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000685", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000686", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000686", - "primaryVrm": "000686Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000686", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000687", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000687", - "primaryVrm": "000687Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000687", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000688", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000688", - "primaryVrm": "000688Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000688", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000689", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000689", - "primaryVrm": "000689Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000689", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000690", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000690", - "primaryVrm": "000690Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000690", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000691", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000691", - "primaryVrm": "000691Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000691", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000692", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000692", - "primaryVrm": "000692Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000692", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000693", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000693", - "primaryVrm": "000693Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000693", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000694", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000694", - "primaryVrm": "000694Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000694", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000695", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000695", - "primaryVrm": "000695Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000695", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000696", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000696", - "primaryVrm": "000696Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000696", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000697", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000697", - "primaryVrm": "000697Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000697", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000698", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000698", - "primaryVrm": "000698Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000698", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000699", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000699", - "primaryVrm": "000699Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000699", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000700", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000700", - "primaryVrm": "000700Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000700", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000701", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000701", - "primaryVrm": "000701Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000701", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000702", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000702", - "primaryVrm": "000702Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000702", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000703", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000703", - "primaryVrm": "000703Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000703", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000704", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000704", - "primaryVrm": "000704Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000704", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000705", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000705", - "primaryVrm": "000705Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000705", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000706", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000706", - "primaryVrm": "000706Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000706", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000707", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000707", - "primaryVrm": "000707Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000707", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000708", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000708", - "primaryVrm": "000708Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000708", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000709", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000709", - "primaryVrm": "000709Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000709", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000710", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000710", - "primaryVrm": "000710Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000710", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000711", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000711", - "primaryVrm": "000711Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000711", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000712", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000712", - "primaryVrm": "000712Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000712", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000713", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000713", - "primaryVrm": "000713Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000713", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000714", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000714", - "primaryVrm": "000714Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000714", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000715", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000715", - "primaryVrm": "000715Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000715", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000716", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000716", - "primaryVrm": "000716Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000716", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000717", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000717", - "primaryVrm": "000717Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000717", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000718", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000718", - "primaryVrm": "000718Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000718", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000719", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000719", - "primaryVrm": "000719Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000719", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000720", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000720", - "primaryVrm": "000720Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000720", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000721", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000721", - "primaryVrm": "000721Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000721", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000722", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000722", - "primaryVrm": "000722Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000722", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000723", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000723", - "primaryVrm": "000723Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000723", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000724", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000724", - "primaryVrm": "000724Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000724", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000725", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000725", - "primaryVrm": "000725Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000725", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000726", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000726", - "primaryVrm": "000726Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000726", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000727", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000727", - "primaryVrm": "000727Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000727", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000728", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000728", - "primaryVrm": "000728Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000728", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000729", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000729", - "primaryVrm": "000729Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000729", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000730", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000730", - "primaryVrm": "000730Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000730", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000731", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000731", - "primaryVrm": "000731Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000731", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000732", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000732", - "primaryVrm": "000732Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000732", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000733", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000733", - "primaryVrm": "000733Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000733", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000734", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000734", - "primaryVrm": "000734Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000734", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000735", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000735", - "primaryVrm": "000735Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000735", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000736", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000736", - "primaryVrm": "000736Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000736", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000737", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000737", - "primaryVrm": "000737Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000737", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000738", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000738", - "primaryVrm": "000738Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000738", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000739", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000739", - "primaryVrm": "000739Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000739", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000740", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000740", - "primaryVrm": "000740Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000740", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000741", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000741", - "primaryVrm": "000741Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000741", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000742", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000742", - "primaryVrm": "000742Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000742", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000743", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000743", - "primaryVrm": "000743Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000743", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000744", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000744", - "primaryVrm": "000744Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000744", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000745", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000745", - "primaryVrm": "000745Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000745", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000746", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000746", - "primaryVrm": "000746Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000746", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000747", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000747", - "primaryVrm": "000747Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000747", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000748", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000748", - "primaryVrm": "000748Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000748", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000749", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000749", - "primaryVrm": "000749Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000749", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000750", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000750", - "primaryVrm": "000750Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000750", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000751", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000751", - "primaryVrm": "000751Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000751", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000752", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000752", - "primaryVrm": "000752Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000752", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000753", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000753", - "primaryVrm": "000753Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000753", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000754", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000754", - "primaryVrm": "000754Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000754", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000755", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000755", - "primaryVrm": "000755Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000755", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000756", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000756", - "primaryVrm": "000756Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000756", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000757", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000757", - "primaryVrm": "000757Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000757", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000758", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000758", - "primaryVrm": "000758Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000758", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000759", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000759", - "primaryVrm": "000759Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000759", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000760", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000760", - "primaryVrm": "000760Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000760", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000761", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000761", - "primaryVrm": "000761Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000761", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000762", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000762", - "primaryVrm": "000762Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000762", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000763", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000763", - "primaryVrm": "000763Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000763", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000764", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000764", - "primaryVrm": "000764Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000764", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000765", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000765", - "primaryVrm": "000765Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000765", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000766", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000766", - "primaryVrm": "000766Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000766", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000767", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000767", - "primaryVrm": "000767Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000767", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000768", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000768", - "primaryVrm": "000768Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000768", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000769", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000769", - "primaryVrm": "000769Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000769", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000770", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000770", - "primaryVrm": "000770Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000770", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000771", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000771", - "primaryVrm": "000771Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000771", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000772", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000772", - "primaryVrm": "000772Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000772", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000773", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000773", - "primaryVrm": "000773Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000773", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000774", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000774", - "primaryVrm": "000774Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000774", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000775", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000775", - "primaryVrm": "000775Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000775", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000776", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000776", - "primaryVrm": "000776Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000776", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000777", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000777", - "primaryVrm": "000777Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000777", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000778", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000778", - "primaryVrm": "000778Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000778", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000779", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000779", - "primaryVrm": "000779Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000779", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000780", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000780", - "primaryVrm": "000780Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000780", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000781", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000781", - "primaryVrm": "000781Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000781", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000782", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000782", - "primaryVrm": "000782Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000782", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000783", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000783", - "primaryVrm": "000783Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000783", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000784", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000784", - "primaryVrm": "000784Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000784", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000785", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000785", - "primaryVrm": "000785Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000785", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000786", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000786", - "primaryVrm": "000786Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000786", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000787", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000787", - "primaryVrm": "000787Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000787", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000788", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000788", - "primaryVrm": "000788Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000788", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000789", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000789", - "primaryVrm": "000789Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000789", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000790", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000790", - "primaryVrm": "000790Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000790", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000791", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000791", - "primaryVrm": "000791Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000791", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000792", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000792", - "primaryVrm": "000792Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000792", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000793", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000793", - "primaryVrm": "000793Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000793", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000794", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000794", - "primaryVrm": "000794Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000794", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000795", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000795", - "primaryVrm": "000795Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000795", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000796", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000796", - "primaryVrm": "000796Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000796", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000797", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000797", - "primaryVrm": "000797Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000797", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000798", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000798", - "primaryVrm": "000798Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000798", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000799", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000799", - "primaryVrm": "000799Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000799", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000800", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000800", - "primaryVrm": "000800Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000800", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000801", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000801", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000801" - }, - { - "systemNumber": "BPS000802", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000802", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000802" - }, - { - "systemNumber": "BPS000803", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000803", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000803" - }, - { - "systemNumber": "BPS000804", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000804", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000804" - }, - { - "systemNumber": "BPS000805", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000805", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000805" - }, - { - "systemNumber": "BPS000806", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000806", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000806" - }, - { - "systemNumber": "BPS000807", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000807", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000807" - }, - { - "systemNumber": "BPS000808", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000808", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000808" - }, - { - "systemNumber": "BPS000809", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000809", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000809" - }, - { - "systemNumber": "BPS000810", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000810", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000810" - }, - { - "systemNumber": "BPS000811", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000811", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000811" - }, - { - "systemNumber": "BPS000812", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000812", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000812" - }, - { - "systemNumber": "BPS000813", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000813", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000813" - }, - { - "systemNumber": "BPS000814", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000814", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000814" - }, - { - "systemNumber": "BPS000815", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000815", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000815" - }, - { - "systemNumber": "BPS000816", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000816", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000816" - }, - { - "systemNumber": "BPS000817", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000817", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000817" - }, - { - "systemNumber": "BPS000818", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000818", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000818" - }, - { - "systemNumber": "BPS000819", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000819", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000819" - }, - { - "systemNumber": "BPS000820", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000820", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000820" - }, - { - "systemNumber": "BPS000821", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000821", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000821" - }, - { - "systemNumber": "BPS000822", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000822", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000822" - }, - { - "systemNumber": "BPS000823", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000823", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000823" - }, - { - "systemNumber": "BPS000824", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000824", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000824" - }, - { - "systemNumber": "BPS000825", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000825", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000825" - }, - { - "systemNumber": "BPS000826", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000826", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000826" - }, - { - "systemNumber": "BPS000827", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000827", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000827" - }, - { - "systemNumber": "BPS000828", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000828", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000828" - }, - { - "systemNumber": "BPS000829", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000829", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000829" - }, - { - "systemNumber": "BPS000830", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000830", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000830" - }, - { - "systemNumber": "BPS000831", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000831", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000831" - }, - { - "systemNumber": "BPS000832", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000832", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000832" - }, - { - "systemNumber": "BPS000833", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000833", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000833" - }, - { - "systemNumber": "BPS000834", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000834", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000834" - }, - { - "systemNumber": "BPS000835", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000835", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000835" - }, - { - "systemNumber": "BPS000836", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000836", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000836" - }, - { - "systemNumber": "BPS000837", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000837", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000837" - }, - { - "systemNumber": "BPS000838", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000838", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000838" - }, - { - "systemNumber": "BPS000839", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000839", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000839" - }, - { - "systemNumber": "BPS000840", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000840", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000840" - }, - { - "systemNumber": "BPS000841", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000841", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000841" - }, - { - "systemNumber": "BPS000842", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000842", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000842" - }, - { - "systemNumber": "BPS000843", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000843", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000843" - }, - { - "systemNumber": "BPS000844", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000844", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000844" - }, - { - "systemNumber": "BPS000845", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000845", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000845" - }, - { - "systemNumber": "BPS000846", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000846", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000846" - }, - { - "systemNumber": "BPS000847", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000847", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000847" - }, - { - "systemNumber": "BPS000848", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000848", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000848" - }, - { - "systemNumber": "BPS000849", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000849", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000849" - }, - { - "systemNumber": "BPS000850", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000850", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000850" - }, - { - "systemNumber": "BPS000851", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000851", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000851" - }, - { - "systemNumber": "BPS000852", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000852", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000852" - }, - { - "systemNumber": "BPS000853", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000853", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000853" - }, - { - "systemNumber": "BPS000854", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000854", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000854" - }, - { - "systemNumber": "BPS000855", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000855", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000855" - }, - { - "systemNumber": "BPS000856", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000856", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000856" - }, - { - "systemNumber": "BPS000857", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000857", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000857" - }, - { - "systemNumber": "BPS000858", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000858", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000858" - }, - { - "systemNumber": "BPS000859", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000859", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000859" - }, - { - "systemNumber": "BPS000860", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000860", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000860" - }, - { - "systemNumber": "BPS000861", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000861", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000861" - }, - { - "systemNumber": "BPS000862", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000862", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000862" - }, - { - "systemNumber": "BPS000863", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000863", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000863" - }, - { - "systemNumber": "BPS000864", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000864", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000864" - }, - { - "systemNumber": "BPS000865", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000865", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000865" - }, - { - "systemNumber": "BPS000866", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000866", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000866" - }, - { - "systemNumber": "BPS000867", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000867", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000867" - }, - { - "systemNumber": "BPS000868", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000868", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000868" - }, - { - "systemNumber": "BPS000869", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000869", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000869" - }, - { - "systemNumber": "BPS000870", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000870", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000870" - }, - { - "systemNumber": "BPS000871", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000871", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000871" - }, - { - "systemNumber": "BPS000872", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000872", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000872" - }, - { - "systemNumber": "BPS000873", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000873", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000873" - }, - { - "systemNumber": "BPS000874", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000874", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000874" - }, - { - "systemNumber": "BPS000875", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000875", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000875" - }, - { - "systemNumber": "BPS000876", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000876", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000876" - }, - { - "systemNumber": "BPS000877", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000877", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000877" - }, - { - "systemNumber": "BPS000878", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000878", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000878" - }, - { - "systemNumber": "BPS000879", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000879", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000879" - }, - { - "systemNumber": "BPS000880", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000880", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000880" - }, - { - "systemNumber": "BPS000881", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000881", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000881" - }, - { - "systemNumber": "BPS000882", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000882", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000882" - }, - { - "systemNumber": "BPS000883", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000883", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000883" - }, - { - "systemNumber": "BPS000884", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000884", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000884" - }, - { - "systemNumber": "BPS000885", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000885", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000885" - }, - { - "systemNumber": "BPS000886", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000886", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000886" - }, - { - "systemNumber": "BPS000887", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000887", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000887" - }, - { - "systemNumber": "BPS000888", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000888", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000888" - }, - { - "systemNumber": "BPS000889", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000889", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000889" - }, - { - "systemNumber": "BPS000890", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000890", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000890" - }, - { - "systemNumber": "BPS000891", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000891", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000891" - }, - { - "systemNumber": "BPS000892", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000892", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000892" - }, - { - "systemNumber": "BPS000893", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000893", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000893" - }, - { - "systemNumber": "BPS000894", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000894", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000894" - }, - { - "systemNumber": "BPS000895", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000895", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000895" - }, - { - "systemNumber": "BPS000896", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000896", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000896" - }, - { - "systemNumber": "BPS000897", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000897", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000897" - }, - { - "systemNumber": "BPS000898", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000898", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000898" - }, - { - "systemNumber": "BPS000899", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000899", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000899" - }, - { - "systemNumber": "BPS000900", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000900", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV000900" - }, - { - "systemNumber": "BPS000901", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000901", - "primaryVrm": "000901Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000901", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000902", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000902", - "primaryVrm": "000902Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000902", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000903", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000903", - "primaryVrm": "000903Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000903", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000904", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000904", - "primaryVrm": "000904Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000904", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000905", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000905", - "primaryVrm": "000905Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000905", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000906", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000906", - "primaryVrm": "000906Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000906", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000907", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000907", - "primaryVrm": "000907Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000907", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000908", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000908", - "primaryVrm": "000908Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000908", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000909", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000909", - "primaryVrm": "000909Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000909", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000910", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000910", - "primaryVrm": "000910Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000910", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000911", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000911", - "primaryVrm": "000911Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000911", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000912", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000912", - "primaryVrm": "000912Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000912", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000913", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000913", - "primaryVrm": "000913Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000913", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000914", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000914", - "primaryVrm": "000914Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000914", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000915", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000915", - "primaryVrm": "000915Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000915", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000916", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000916", - "primaryVrm": "000916Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000916", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000917", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000917", - "primaryVrm": "000917Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000917", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000918", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000918", - "primaryVrm": "000918Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000918", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000919", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000919", - "primaryVrm": "000919Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000919", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000920", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000920", - "primaryVrm": "000920Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000920", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000921", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000921", - "primaryVrm": "000921Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000921", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000922", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000922", - "primaryVrm": "000922Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000922", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000923", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000923", - "primaryVrm": "000923Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000923", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000924", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000924", - "primaryVrm": "000924Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000924", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000925", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000925", - "primaryVrm": "000925Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000925", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000926", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000926", - "primaryVrm": "000926Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000926", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000927", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000927", - "primaryVrm": "000927Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000927", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000928", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000928", - "primaryVrm": "000928Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000928", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000929", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000929", - "primaryVrm": "000929Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000929", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000930", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000930", - "primaryVrm": "000930Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000930", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000931", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000931", - "primaryVrm": "000931Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000931", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000932", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000932", - "primaryVrm": "000932Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000932", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000933", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000933", - "primaryVrm": "000933Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000933", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000934", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000934", - "primaryVrm": "000934Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000934", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000935", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000935", - "primaryVrm": "000935Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000935", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000936", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000936", - "primaryVrm": "000936Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000936", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000937", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000937", - "primaryVrm": "000937Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000937", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000938", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000938", - "primaryVrm": "000938Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000938", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000939", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000939", - "primaryVrm": "000939Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000939", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000940", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000940", - "primaryVrm": "000940Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000940", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000941", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000941", - "primaryVrm": "000941Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000941", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000942", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000942", - "primaryVrm": "000942Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000942", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000943", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000943", - "primaryVrm": "000943Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000943", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000944", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000944", - "primaryVrm": "000944Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000944", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000945", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000945", - "primaryVrm": "000945Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000945", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000946", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000946", - "primaryVrm": "000946Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000946", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000947", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000947", - "primaryVrm": "000947Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000947", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000948", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000948", - "primaryVrm": "000948Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000948", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000949", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000949", - "primaryVrm": "000949Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000949", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000950", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000950", - "primaryVrm": "000950Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000950", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000951", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000951", - "primaryVrm": "000951Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000951", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000952", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000952", - "primaryVrm": "000952Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000952", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000953", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000953", - "primaryVrm": "000953Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000953", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000954", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000954", - "primaryVrm": "000954Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000954", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000955", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000955", - "primaryVrm": "000955Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000955", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000956", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000956", - "primaryVrm": "000956Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000956", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000957", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000957", - "primaryVrm": "000957Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000957", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000958", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000958", - "primaryVrm": "000958Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000958", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000959", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000959", - "primaryVrm": "000959Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000959", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000960", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000960", - "primaryVrm": "000960Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000960", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000961", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000961", - "primaryVrm": "000961Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000961", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000962", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000962", - "primaryVrm": "000962Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000962", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000963", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000963", - "primaryVrm": "000963Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000963", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000964", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000964", - "primaryVrm": "000964Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000964", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000965", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000965", - "primaryVrm": "000965Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000965", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000966", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000966", - "primaryVrm": "000966Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000966", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000967", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000967", - "primaryVrm": "000967Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000967", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000968", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000968", - "primaryVrm": "000968Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000968", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000969", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000969", - "primaryVrm": "000969Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000969", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000970", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000970", - "primaryVrm": "000970Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000970", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000971", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000971", - "primaryVrm": "000971Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000971", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000972", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000972", - "primaryVrm": "000972Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000972", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000973", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000973", - "primaryVrm": "000973Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000973", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000974", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000974", - "primaryVrm": "000974Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000974", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000975", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000975", - "primaryVrm": "000975Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000975", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000976", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000976", - "primaryVrm": "000976Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000976", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000977", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000977", - "primaryVrm": "000977Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000977", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000978", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000978", - "primaryVrm": "000978Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000978", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000979", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000979", - "primaryVrm": "000979Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000979", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000980", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000980", - "primaryVrm": "000980Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000980", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000981", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000981", - "primaryVrm": "000981Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000981", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000982", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000982", - "primaryVrm": "000982Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000982", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000983", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000983", - "primaryVrm": "000983Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000983", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000984", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000984", - "primaryVrm": "000984Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000984", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000985", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000985", - "primaryVrm": "000985Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000985", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000986", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000986", - "primaryVrm": "000986Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000986", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000987", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000987", - "primaryVrm": "000987Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000987", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000988", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000988", - "primaryVrm": "000988Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000988", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000989", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000989", - "primaryVrm": "000989Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000989", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000990", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000990", - "primaryVrm": "000990Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000990", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000991", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000991", - "primaryVrm": "000991Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000991", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000992", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000992", - "primaryVrm": "000992Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000992", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000993", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000993", - "primaryVrm": "000993Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000993", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000994", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000994", - "primaryVrm": "000994Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000994", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000995", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000995", - "primaryVrm": "000995Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000995", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000996", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000996", - "primaryVrm": "000996Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000996", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000997", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000997", - "primaryVrm": "000997Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000997", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000998", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000998", - "primaryVrm": "000998Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000998", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS000999", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "000999", - "primaryVrm": "000999Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV000999", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001000", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001000", - "primaryVrm": "001000Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "testable", - "techRecord_regnDate": "2020-10-10", - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001000", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001000", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001000", - "primaryVrm": "001000Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001000", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001001", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001001", - "primaryVrm": "001001Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001001", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001002", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001002", - "primaryVrm": "001002Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001002", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001003", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001003", - "primaryVrm": "001003Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001003", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001004", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001004", - "primaryVrm": "001004Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001004", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001005", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001005", - "primaryVrm": "001005Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001005", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001006", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001006", - "primaryVrm": "001006Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001006", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001007", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001007", - "primaryVrm": "001007Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001007", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001008", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001008", - "primaryVrm": "001008Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001008", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001009", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001009", - "primaryVrm": "001009Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001009", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001010", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001010", - "primaryVrm": "001010Z", - "techRecord_alterationMarker": true, - "techRecord_applicantDetails_address1": null, - "techRecord_applicantDetails_address2": null, - "techRecord_applicantDetails_address3": null, - "techRecord_applicantDetails_emailAddress": null, - "techRecord_applicantDetails_name": null, - "techRecord_applicantDetails_postCode": null, - "techRecord_applicantDetails_postTown": null, - "techRecord_applicantDetails_telephoneNumber": null, - "techRecord_approvalType": "NTA", - "techRecord_approvalTypeNumber": "1", - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": 134, - "techRecord_axles_0_tyres_fitmentCode": "single", - "techRecord_axles_0_tyres_plyRating": "RA", - "techRecord_axles_0_tyres_tyreCode": 199, - "techRecord_axles_0_tyres_tyreSize": "9.5-19.5", - "techRecord_axles_0_weights_designWeight": 3, - "techRecord_axles_0_weights_eecWeight": 2, - "techRecord_axles_0_weights_gbWeight": 1, - "techRecord_bodyType_code": "u", - "techRecord_bodyType_description": "artic", - "techRecord_brakes_dtpNumber": "12345", - "techRecord_conversionRefNo": "1", - "techRecord_createdAt": "12345", - "techRecord_createdById": "123456", - "techRecord_createdByName": "Jane Fridge", - "techRecord_departmentalVehicleMarker": true, - "techRecord_dimensions_length": 1, - "techRecord_dimensions_width": 1, - "techRecord_drawbarCouplingFitted": true, - "techRecord_emissionsLimit": 1, - "techRecord_euroStandard": "0.10 g/kWh Euro 3 PM", - "techRecord_euVehicleCategory": "m1", - "techRecord_frontAxleTo5thWheelMax": 1, - "techRecord_frontAxleTo5thWheelMin": 1, - "techRecord_frontAxleToRearAxle": 1, - "techRecord_frontVehicleTo5thWheelCouplingMax": 1, - "techRecord_frontVehicleTo5thWheelCouplingMin": 1, - "techRecord_fuelPropulsionSystem": "DieselPetrol", - "techRecord_functionCode": "R", - "techRecord_grossDesignWeight": 3, - "techRecord_grossEecWeight": 2, - "techRecord_grossGbWeight": 1, - "techRecord_make": "AEC", - "techRecord_manufactureYear": 2020, - "techRecord_maxTrainDesignWeight": 3, - "techRecord_maxTrainEecWeight": 2, - "techRecord_maxTrainGbWeight": 1, - "techRecord_microfilm_microfilmDocumentType": "AAV - HGV Annual Test", - "techRecord_microfilm_microfilmRollNumber": "1", - "techRecord_microfilm_microfilmSerialNumber": "2", - "techRecord_model": "123", - "techRecord_noOfAxles": 1, - "techRecord_ntaNumber": "2", - "techRecord_offRoad": false, - "techRecord_reasonForCreation": "Test", - "techRecord_recordCompleteness": "skeleton", - "techRecord_regnDate": "2020-10-10", - "techRecord_roadFriendly": true, - "techRecord_speedLimiterMrk": true, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": true, - "techRecord_trainDesignWeight": 3, - "techRecord_trainEecWeight": 2, - "techRecord_trainGbWeight": 1, - "techRecord_tyreUseCode": "2R", - "techRecord_variantNumber": "3", - "techRecord_variantVersionNumber": "4", - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": "heavy goods vehicle", - "techRecord_vehicleConfiguration": "rigid", - "techRecord_vehicleType": "hgv", - "vin": "BPV001010", - "techRecord_adrDetails_dangerousGoods": true - }, - { - "systemNumber": "BPS001011", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001011", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001011", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001012", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001012", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001012", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001013", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001013", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001013", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001014", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001014", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001014", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001015", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001015", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001015", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001016", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001016", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001016", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001017", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001017", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001017", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001018", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001018", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001018", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001019", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001019", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001019", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001020", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001020", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001020", - "techRecord_recordCompleteness": "skeleton" - }, - { - "systemNumber": "BPS001021", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001021", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001021" - }, - { - "systemNumber": "BPS001022", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001022", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001022" - }, - { - "systemNumber": "BPS001023", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001023", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001023" - }, - { - "systemNumber": "BPS001024", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001024", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001024" - }, - { - "systemNumber": "BPS001025", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001025", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001025" - }, - { - "systemNumber": "BPS001026", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001026", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001026" - }, - { - "systemNumber": "BPS001027", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001027", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001027" - }, - { - "systemNumber": "BPS001028", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001028", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001028" - }, - { - "systemNumber": "BPS001029", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001029", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001029" - }, - { - "systemNumber": "BPS001030", - "createdTimestamp": "2024-09-01T12:00:00.000Z", - "partialVin": "001030", - "primaryVrm": "TRAILER_ID", - "secondaryVrms": [ - "123" - ], - "techRecord_axles_0_axleNumber": 1, - "techRecord_axles_0_parkingBrakeMrk": false, - "techRecord_axles_0_tyres_dataTrAxles": null, - "techRecord_axles_0_tyres_fitmentCode": null, - "techRecord_axles_0_tyres_plyRating": null, - "techRecord_axles_0_tyres_speedCategorySymbol": "a7", - "techRecord_axles_0_tyres_tyreCode": null, - "techRecord_axles_0_tyres_tyreSize": null, - "techRecord_axles_0_weights_designWeight": null, - "techRecord_axles_0_weights_gbWeight": null, - "techRecord_axles_1_axleNumber": 2, - "techRecord_axles_1_parkingBrakeMrk": null, - "techRecord_axles_1_tyres_dataTrAxles": 345, - "techRecord_axles_1_tyres_fitmentCode": "single", - "techRecord_axles_1_tyres_plyRating": "AB", - "techRecord_axles_1_tyres_speedCategorySymbol": "a7", - "techRecord_axles_1_tyres_tyreCode": 5678, - "techRecord_axles_1_tyres_tyreSize": "295/80-22.5", - "techRecord_axles_1_weights_designWeight": null, - "techRecord_axles_1_weights_gbWeight": null, - "techRecord_bodyType_code": "x", - "techRecord_bodyType_description": null, - "techRecord_brakeCode": "178202", - "techRecord_brakes_antilockBrakingSystem": true, - "techRecord_brakes_brakeCode": "123", - "techRecord_brakes_brakeCodeOriginal": "12412", - "techRecord_brakes_brakeForceWheelsNotLocked_parkingBrakeForceA": 2332, - "techRecord_brakes_brakeForceWheelsNotLocked_secondaryBrakeForceA": 2512, - "techRecord_brakes_brakeForceWheelsNotLocked_serviceBrakeForceA": 6424, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB": 3512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB": 2512, - "techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB": 5521, - "techRecord_brakes_dataTrBrakeOne": "None", - "techRecord_brakes_dataTrBrakeThree": "None", - "techRecord_brakes_dataTrBrakeTwo": "None", - "techRecord_brakes_dtpNumber": null, - "techRecord_brakes_loadSensingValve": true, - "techRecord_brakes_retarderBrakeOne": "electric", - "techRecord_brakes_retarderBrakeTwo": "exhaust", - "techRecord_conversionRefNo": null, - "techRecord_createdAt": "2019-06-24T10:26:54.903Z", - "techRecord_createdByName": null, - "techRecord_dimensions_length": null, - "techRecord_dimensions_width": null, - "techRecord_drawbarCouplingFitted": null, - "techRecord_euroStandard": " ", - "techRecord_euVehicleCategory": null, - "techRecord_frontAxleTo5thWheelMax": null, - "techRecord_frontAxleTo5thWheelMin": null, - "techRecord_frontVehicleTo5thWheelCouplingMax": null, - "techRecord_frontVehicleTo5thWheelCouplingMin": null, - "techRecord_functionCode": null, - "techRecord_grossDesignWeight": null, - "techRecord_grossGbWeight": null, - "techRecord_grossKerbWeight": null, - "techRecord_grossLadenWeight": null, - "techRecord_lastUpdatedAt": "2019-06-24T10:26:54.903Z", - "techRecord_make": null, - "techRecord_manufactureYear": null, - "techRecord_maxTrainDesignWeight": null, - "techRecord_maxTrainGbWeight": null, - "techRecord_model": null, - "techRecord_noOfAxles": 2, - "techRecord_notes": null, - "techRecord_ntaNumber": null, - "techRecord_reasonForCreation": null, - "techRecord_regnDate": null, - "techRecord_roadFriendly": false, - "techRecord_speedLimiterMrk": null, - "techRecord_statusCode": "current", - "techRecord_tachoExemptMrk": null, - "techRecord_trainDesignWeight": null, - "techRecord_trainGbWeight": null, - "techRecord_tyreUseCode": null, - "techRecord_vehicleClass_code": "v", - "techRecord_vehicleClass_description": null, - "techRecord_vehicleConfiguration": null, - "techRecord_vehicleSubclass_0": "a", - "techRecord_vehicleType": "trl", - "vin": "BPV001030" - } -]